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
+1 -2
View File
@@ -43,7 +43,6 @@ export default function FloatingNavBar() {
const router = useRouter();
const pathname = usePathname();
const insets = useSafeAreaInsets();
const { t } = i18n;
return (
<View style={[styles.wrapper, { bottom: Math.max(insets.bottom, 16) }]}>
@@ -76,7 +75,7 @@ export default function FloatingNavBar() {
]}
numberOfLines={1}
>
{t(tab.labelKey)}
{i18n.t(tab.labelKey)}
</Text>
</Pressable>
);