mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-03 09:10:13 -05:00
Styling, verbiage
This commit is contained in:
@@ -17,7 +17,7 @@ export default function Login(): React.JSX.Element {
|
||||
<Stack.Screen
|
||||
name="ServerAddress"
|
||||
options={{
|
||||
title: "Enter your Jellyfin server",
|
||||
title: "Connect to Jellyfin",
|
||||
animationTypeForReplace: changeServer ? 'pop' : 'push'
|
||||
}}
|
||||
component={ServerAddress}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React, { useState } from "react";
|
||||
import _ from "lodash";
|
||||
import { RadioGroup, RadioButton } from 'react-native-ui-lib';
|
||||
import { Button, TextInput, useColorScheme, View } from "react-native";
|
||||
import { RadioGroup, RadioButton, TextField } from 'react-native-ui-lib';
|
||||
import { Button, useColorScheme, View } from "react-native";
|
||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
||||
import { useMutation } from "@tanstack/react-query";
|
||||
import { AsyncStorageKeys } from "../../../enums/async-storage-keys";
|
||||
@@ -64,10 +64,12 @@ export default function ServerAddress(): React.JSX.Element {
|
||||
label={'HTTP'}
|
||||
/>
|
||||
</RadioGroup>
|
||||
<TextInput
|
||||
placeholder="Jellyfin Server Address"
|
||||
onChangeText={setServerAddress}>
|
||||
</TextInput>
|
||||
<TextField
|
||||
placeholder="jellyfin.org"
|
||||
onChangeText={setServerAddress}
|
||||
|
||||
>
|
||||
</TextField>
|
||||
|
||||
<Button
|
||||
onPress={() => {
|
||||
|
||||
Reference in New Issue
Block a user