We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent decf028 commit 1087339Copy full SHA for 1087339
shatter-mobile/app/(tabs)/index.tsx
@@ -1,12 +1,19 @@
1
import { Image } from "expo-image";
2
-import { Platform, StyleSheet, View } from "react-native";
+import { Platform, StyleSheet, View, Text } from "react-native";
3
4
import { Link } from "expo-router";
5
6
export default function HomeScreen() {
7
- return <View></View>;
+ return <View>
8
+ <Text style={styles.title}>Hello</Text>
9
+ </View>;
10
}
11
12
const styles = StyleSheet.create({
-
13
+ title: {
14
+ fontSize: 20,
15
+ fontWeight: 'bold',
16
+ textAlign: 'center',
17
+ marginTop: 20,
18
+ },
19
});
0 commit comments