diff options
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-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', |