fix safe area context for home screen

update album list colors

add library details to settings screen
This commit is contained in:
Violet Caulfield
2025-01-08 16:10:32 -06:00
parent ba74963168
commit cb90c34617
3 changed files with 29 additions and 24 deletions
+2
View File
@@ -4,6 +4,7 @@ import { ScrollView, Separator } from "tamagui";
import AccountDetails from "../helpers/account-details";
import SignOut from "../helpers/sign-out";
import ServerDetails from "../helpers/server-details";
import LibraryDetails from "../helpers/library-details";
export default function Root() : React.JSX.Element {
return (
@@ -13,6 +14,7 @@ export default function Root() : React.JSX.Element {
<Separator marginVertical={15} />
<ServerDetails />
<Separator marginVertical={15} />
<LibraryDetails />
<SignOut />
</ScrollView>
</SafeAreaView>