diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-15 15:09:50 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-15 15:09:50 -0600 |
commit | 3725a2eed10707194bc9554a9c58166e9324dfc8 (patch) | |
tree | f167b4541f86eb5b9ff8629c0bbb6486644f498b /src/view/shell/mobile/index.tsx | |
parent | 9a6df95adecaf3935fdbd58d893fca6489a040b9 (diff) | |
download | voidsky-3725a2eed10707194bc9554a9c58166e9324dfc8.tar.zst |
Add a server instance selector and drop env vars
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index 712d6dc23..96390e9b8 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -170,6 +170,7 @@ export const MobileShell: React.FC = observer(() => { <SafeAreaView style={styles.innerContainer}> <Login /> </SafeAreaView> + <Modal /> </LinearGradient> ) } @@ -294,6 +295,7 @@ function constructScreenRenderDesc(nav: NavigationModel): { const styles = StyleSheet.create({ outerContainer: { height: '100%', + flex: 1, }, innerContainer: { flex: 1, |