[feat] tabs added

This commit is contained in:
Arta
2024-01-15 17:30:21 +03:30
parent 2e1e239be5
commit 1865d2e6a8
13 changed files with 14159 additions and 76 deletions

View 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',
},
});