SelectionScreen.tsx 440 octets
Newer Older
import React from 'react';
import { View } from 'react-native';
import { Text, useTheme } from 'react-native-paper';

export default function SelectionScreen() {
    const theme = useTheme();
    return (
        <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: theme.colors.background }}>
            <Text style={{ color: theme.colors.onBackground }}>SelectionScreen</Text>