diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 16:38:12 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 16:38:12 -0600 |
commit | aec0f1c3baf4eabefd3d0e561cd89f0217926705 (patch) | |
tree | 711a77ed4b30a38702be099af96357aebcabe2a2 /src/view/shell/mobile | |
parent | 88ab1f171ac1fd00e896a809ff3ea7f6684e0bcf (diff) | |
download | voidsky-aec0f1c3baf4eabefd3d0e561cd89f0217926705.tar.zst |
Fixes to the followers list view
Diffstat (limited to 'src/view/shell/mobile')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index b1d00adc1..c4ca7b9f5 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -396,7 +396,7 @@ export const MobileShell: React.FC = observer(() => { /> <Animated.View style={[ - s.flex1, + {height: '100%'}, screenBg, current ? [ @@ -543,13 +543,12 @@ function constructScreenRenderDesc(nav: NavigationModel): { const styles = StyleSheet.create({ outerContainer: { height: '100%', - flex: 1, }, innerContainer: { - flex: 1, + height: '100%', }, screenContainer: { - flex: 1, + height: '100%', }, screenMask: { position: 'absolute', |