refactor: audiobook card 컬러 테마 수정

This commit is contained in:
2026-01-23 11:14:49 +09:00
parent 81897144c6
commit 1c60a450b9
5 changed files with 544 additions and 14 deletions

View File

@@ -1,5 +1,7 @@
import { Button, StyleSheet, View } from "react-native";
import AppText from "../components/ui/AppText";
import AudioBookCard from "../components/ui/AudioBookCard";
import Card from "../components/ui/Card";
import { useAuth } from "../store/auth";
import { Colors } from "../theme/colors";
@@ -7,6 +9,16 @@ export default function HomeScreen() {
const { signOut } = useAuth();
return (
<View style={styles.container}>
<Card>
<AppText>feafwea</AppText>
<AppText>feafwea</AppText>
</Card>
<AudioBookCard
meta="ff"
title="fefe"
status="READY"
progress={0.91}
></AudioBookCard>
<Button title="logout" onPress={() => signOut()}></Button>
<AppText>fewfeaw</AppText>
<AppText>fewfeaw</AppText>
@@ -20,6 +32,7 @@ const styles = StyleSheet.create({
backgroundColor: Colors.bg,
alignContent: "center",
justifyContent: "center",
padding: 8,
},
row: {
flexDirection: "row",