diff --git a/components/BottomNav.tsx b/components/BottomNav.tsx index 825d791..ee3e78a 100644 --- a/components/BottomNav.tsx +++ b/components/BottomNav.tsx @@ -1,4 +1,4 @@ -import {Appbar, Button, Text, useTheme} from "react-native-paper"; +import {Appbar, Button, Portal, Text, useTheme} from "react-native-paper"; import {View} from "react-native"; import styles from "@/assets/styles"; import React from "react"; diff --git a/components/Broken.tsx b/components/Broken.tsx new file mode 100644 index 0000000..2c23cfe --- /dev/null +++ b/components/Broken.tsx @@ -0,0 +1,18 @@ +import {Avatar, Dialog, Portal, useTheme} from "react-native-paper"; +import React from "react"; + +const theme = useTheme(); + +const Broken = () => { + return ( + + The Internet is a Series of Tubes + + + ); +}; + +export default Broken; diff --git a/components/Location.tsx b/components/Location.tsx index 0e3d8bc..9a6172c 100644 --- a/components/Location.tsx +++ b/components/Location.tsx @@ -1,5 +1,6 @@ import { Dialog, Portal, useTheme } from "react-native-paper"; import React, {useEffect} from "react"; +import Broken from "@/components/Broken"; interface LocationProps { visible: boolean; @@ -15,7 +16,7 @@ const Location: React.FC = ({ visible }) => { return ( - Choose Your Location + )