mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:33:26 +00:00
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
export default function TabBar() {
|
|
return (
|
|
<View style={styles.wrapper}>
|
|
<Text>First Tab</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
wrapper: {
|
|
backgroundColor: '#131322',
|
|
paddingVertical: 24,
|
|
paddingHorizontal: 12,
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
},
|
|
});
|