import styled from 'styled-components/native'; import { useNavigation } from '@react-navigation/native'; import React, { useCallback } from 'react'; import { Text, Button } from 'react-native'; import { THEME_COLOR } from 'CONSTANTS'; import { SubHeader } from 'components/Typography'; import { colors } from 'components/Colors'; import { NavigationProp } from '../..'; import { useTypedSelector } from 'store'; const InputContainer = styled.View` margin: 10px 0; `; const Input = styled.TextInput` padding: 15px; margin-top: 5px; border-radius: 5px; `; export default function LibrarySettings() { const { jellyfin } = useTypedSelector(state => state.settings); const navigation = useNavigation(); const handleSetLibrary = useCallback(() => navigation.navigate('SetJellyfinServer'), [navigation]); return ( <> Jellyfin Library Jellyfin Server URL Jellyfin Access Token Jellyfin User ID