diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-07 15:52:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 15:52:24 -0600 |
commit | e74f94bc72cdbb2282096b8d36677ba6655ab5be (patch) | |
tree | 997aa96761801e1cf23d69c455a2d1b1f5379e80 /src/view/shell/mobile/index.tsx | |
parent | 2f3fc4fe4e799084799631323b73fc97820144c8 (diff) | |
download | voidsky-e74f94bc72cdbb2282096b8d36677ba6655ab5be.tar.zst |
Big batch of UI updates (#276)
* Replace react-native-root-toast with a custom toast that fits the visual style * Tune dark mode colors * Tune colors a bit more * Move the reply prompt to a fixed position in the footer * Fully hide muted posts but give a control to show anyway (close #270) * Improve thread rendering (better clarity on reply lines) * Add follower/following counts to side menu * Fix issues with display name overflows
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index b836bb76d..01df6c165 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -157,7 +157,7 @@ export const MobileShell: React.FC = observer(() => { } const screenBg = { - backgroundColor: theme.colorScheme === 'dark' ? colors.gray7 : colors.gray1, + backgroundColor: theme.colorScheme === 'dark' ? colors.black : colors.gray1, } return ( <View testID="mobileShellView" style={[styles.outerContainer, pal.view]}> @@ -202,13 +202,7 @@ export const MobileShell: React.FC = observer(() => { style={[ s.h100pct, screenBg, - current - ? [ - swipeTransform, - // tabMenuTransform, TODO - // isRunningNewTabAnim ? newTabTransform : undefined, TODO - ] - : undefined, + current ? [swipeTransform] : undefined, ]}> <ErrorBoundary> <Com |