mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
[feat] tabs added
This commit is contained in:
19
apps/mobile/components/TabBar.tsx
Normal file
19
apps/mobile/components/TabBar.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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',
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user