import { Image } from "expo-image";
import { StyleSheet } from "react-native";
import { useQuestions } from "@/api";
import { HelloWave } from "@/components/hello-wave";
import ParallaxScrollView from "@/components/parallax-scroll-view";
import Question from "@/components/question";
import { ThemedView } from "@/components/themed-view";
import { ThemedText } from "@/components/ui/themed-text";
export default function HomeScreen() {
const { data: questions, isLoading: isLoadingQuestions } = useQuestions();
const questionsLoaded =
!isLoadingQuestions && questions && questions.meta.total > 0;
return (
}
>
Questions!
{questionsLoaded &&
questions.data.map((question) => (
))}
);
}
const styles = StyleSheet.create({
titleContainer: {
flexDirection: "row",
alignItems: "center",
gap: 8,
},
stepContainer: {
gap: 8,
marginBottom: 8,
},
reactLogo: {
height: 178,
width: 290,
bottom: 0,
left: 0,
position: "absolute",
},
});