Initial commit
Generated by create-expo-module 56.0.3.
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import { Button, SafeAreaView, ScrollView, Text, View } from 'react-native';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<SafeAreaView style={styles.container}>
|
||||
<ScrollView style={styles.container}>
|
||||
<Text style={styles.header}>Module API Example</Text>
|
||||
</ScrollView>
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
||||
function Group(props: { name: string; children: React.ReactNode }) {
|
||||
return (
|
||||
<View style={styles.group}>
|
||||
<Text style={styles.groupHeader}>{props.name}</Text>
|
||||
{props.children}
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = {
|
||||
header: { fontSize: 30, margin: 20 },
|
||||
groupHeader: { fontSize: 20, marginBottom: 20 },
|
||||
group: { margin: 20, backgroundColor: '#fff', borderRadius: 10, padding: 20 },
|
||||
container: { flex: 1, backgroundColor: '#eee' },
|
||||
view: { flex: 1, height: 200 },
|
||||
};
|
||||
Reference in New Issue
Block a user