location-menu #5

Merged
whysman merged 26 commits from location-menu into master 2025-03-30 01:56:40 +00:00
Showing only changes of commit 356f604323 - Show all commits

View File

@ -1,4 +1,5 @@
import {Avatar, Dialog, Portal, useTheme} from "react-native-paper";
import {Dialog, useTheme} from "react-native-paper";
import { Image } from "react-native";
import React from "react";
const theme = useTheme();
@ -6,11 +7,12 @@ const theme = useTheme();
const Broken = () => {
return (
<Dialog.Content>
<Dialog.Title style={{color: theme.colors.onBackground, textAlign: 'center', fontFamily: "Light"}}>The Internet is a Series of Tubes</Dialog.Title>
<Avatar.Image
<Dialog.Title style={{color: theme.colors.onBackground, fontSize: 16, textAlign: 'center', fontFamily: "Light"}}>The Internet is a Series of Tubes</Dialog.Title>
<Image
source={require("../assets/images/broken.png")}
style={{ alignSelf: 'center', marginBottom: 15 }}
style={{ alignSelf: 'center', width: "90%" }}
/>
<Dialog.Title style={{color: theme.colors.onBackground, fontSize: 16, textAlign: 'center', fontFamily: "Light"}}>And these aren't connected. {"\n"} (We're still working on this part.)</Dialog.Title>
</Dialog.Content>
);
};