add floating nav bar + regroup files by date

This commit is contained in:
m
2026-09-10 22:21:46 +02:00
parent 6332e9cac4
commit 367073ed89
7 changed files with 182 additions and 30 deletions
+22
View File
@@ -0,0 +1,22 @@
import { Stack } from 'expo-router';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import FloatingNavBar from '../components/FloatingNavBar';
import i18n from '../i18n';
export default function Search() {
return (
<View style={styles.container}>
<Stack.Screen options={{ title: i18n.t('search') }} />
<StatusBar style="auto" />
<FloatingNavBar />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});