import React from 'react'; import { View, Text, SafeAreaView } from 'react-native'; import { ScrollView } from 'react-native-gesture-handler'; import styled from 'styled-components/native'; const InputContainer = styled.View` margin: 10px 0; `; const Input = styled.TextInput` background-color: #fbfbfb; padding: 15px; margin-top: 5px; border-radius: 5px; `; export default function Settings() { return ( Settings Jellyfin Server URL Jellyfin API Key Jellyfin User ID ); }