Update Storage URI settings
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
22
src/screens/welcome.tsx
Normal file
22
src/screens/welcome.tsx
Normal 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;
|
Reference in New Issue
Block a user