mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
30 lines
699 B
TypeScript
30 lines
699 B
TypeScript
import { Container } from "@/components/container";
|
|
import { StatusBar } from "expo-status-bar";
|
|
import { Platform, Text, View } from "react-native";
|
|
import { StyleSheet } from "react-native-unistyles";
|
|
|
|
export default function Modal() {
|
|
return (
|
|
<>
|
|
<StatusBar style={Platform.OS === "ios" ? "light" : "auto"} />
|
|
<Container>
|
|
<View style={styles.container}>
|
|
<Text style={styles.text}>Model</Text>
|
|
</View>
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create((theme) => ({
|
|
text: {
|
|
color: theme.colors.typography,
|
|
},
|
|
container: {
|
|
flex: 1,
|
|
paddingBottom: 100,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
}));
|