Files
hipmi-mobile/app/background.tsx
2025-06-23 10:18:59 +08:00

22 lines
407 B
TypeScript

import { Text, View } from "react-native";
import { useNavigation } from "expo-router";
import { useEffect } from "react";
export default function Background() {
const navigation = useNavigation();
useEffect(() => {
navigation.setOptions({
headerShown: true,
headerTitle: "Home",
});
}, [navigation]);
return (
<View>
<Text>Background</Text>
</View>
);
}