2025-03-10 02:48:18 +00:00
|
|
|
import {Appbar, Button, Text, useTheme} from "react-native-paper";
|
|
|
|
import {View} from "react-native";
|
2025-03-08 22:49:48 +00:00
|
|
|
import styles from "@/assets/styles";
|
2025-03-10 02:48:18 +00:00
|
|
|
import React from "react";
|
2025-03-08 22:49:48 +00:00
|
|
|
|
|
|
|
const BottomNav = () => {
|
|
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
|
|
<View style={{ backgroundColor: theme.colors.background }}>
|
|
|
|
<Appbar.Header style={{ backgroundColor: theme.colors.primaryContainer, height: 38 }}>
|
2025-03-10 02:48:18 +00:00
|
|
|
<View style={{ alignItems: "center", flexDirection: "row", justifyContent: "space-between", padding: 10, flex: 1, paddingHorizontal: 15 }}>
|
|
|
|
<Text style={{ color: theme.colors.primary, fontFamily: "Light" }}>Daisy Knight Dog Park</Text>
|
|
|
|
<Button
|
|
|
|
mode="text"
|
|
|
|
onPress={() => null}
|
|
|
|
style={{ backgroundColor: theme.colors.primary, height: 38/2, justifyContent: "center"}}
|
|
|
|
labelStyle={{ color: theme.colors.onPrimary, fontFamily: "Light"}}>
|
|
|
|
Change
|
|
|
|
</Button>
|
2025-03-08 22:49:48 +00:00
|
|
|
</View>
|
|
|
|
</Appbar.Header>
|
|
|
|
</View>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default BottomNav;
|