refactor: update TABS to include hideInNav property and filter in BottomNav; enhance image popup styling and loading indicator

This commit is contained in:
2026-03-01 13:21:19 +01:00
parent 6ec08f30f0
commit b4528920da
5 changed files with 84 additions and 44 deletions

View File

@@ -8,7 +8,7 @@ export function BottomNav() {
return (
<View style={styles.bar}>
{TABS.map((tab) => {
{TABS.filter((tab) => !tab.hideInNav).map((tab) => {
const active = tab.route === route;
return (
<TouchableOpacity