Mods to Broken

This commit is contained in:
whysman 2025-03-23 01:00:07 -04:00
parent 2ba1bc0658
commit 356f604323

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>
);
};