Update Storage URI settings

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-09 18:13:05 +03:00
parent a93630e1e9
commit 9ecc326008
14 changed files with 125 additions and 157 deletions

22
src/screens/welcome.tsx Normal file
View File

@@ -0,0 +1,22 @@
import React from 'react';
import { Button, Text } from 'react-native-paper';
import { PaddedView } from '../components';
import styles from '../styles';
const WelcomeScreen = (properties: { selectStorageLocation: () => void }) => {
return (
<PaddedView centered>
<Text
variant="displayMedium"
style={[styles.marginBottom, styles.centerText]}>
Welcome to Terminally Online!
</Text>
<Button mode="contained" onPress={properties.selectStorageLocation}>
Select Storage Location
</Button>
</PaddedView>
);
};
export default WelcomeScreen;