mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-18 11:10:59 -05:00
dog [plz
This commit is contained in:
@@ -9,7 +9,7 @@ export default function Login(): React.JSX.Element {
|
||||
let { isError } = useServerUrl;
|
||||
|
||||
return (
|
||||
<View useSafeArea>
|
||||
<View useSafeArea marginH>
|
||||
{ isError ? <ServerAddress /> : <ServerAuthentication /> }
|
||||
</View>
|
||||
);
|
||||
|
||||
@@ -11,19 +11,25 @@ export default function ServerAuthentication(): React.JSX.Element {
|
||||
|
||||
return (
|
||||
<>
|
||||
<ActionBar
|
||||
actions={[
|
||||
{
|
||||
label: 'Change Server',
|
||||
onPress: () => console.log("change server requested")
|
||||
},
|
||||
{
|
||||
label: "",
|
||||
},
|
||||
{
|
||||
label: "",
|
||||
}
|
||||
]}/>
|
||||
<View row>
|
||||
<ActionBar
|
||||
actions={[
|
||||
{
|
||||
label: 'Change Server',
|
||||
onPress: () => console.log("change server requested")
|
||||
},
|
||||
{
|
||||
label: "",
|
||||
},
|
||||
{
|
||||
label: "",
|
||||
}
|
||||
]}
|
||||
backgroundColor={isDarkMode ? 'black' : 'white'}
|
||||
/>
|
||||
</View>
|
||||
<View row>
|
||||
|
||||
<Card flex center>
|
||||
<Card.Section>
|
||||
<TextField
|
||||
@@ -47,6 +53,7 @@ export default function ServerAuthentication(): React.JSX.Element {
|
||||
/>
|
||||
</Card.Section>
|
||||
</Card>
|
||||
</View>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user