25 lines
614 B
TypeScript
25 lines
614 B
TypeScript
import React from "react";
|
|
import { Text, View, Image } from "react-native";
|
|
import styles from "@/app/indexStyles";
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View style={styles.mainContainer}>
|
|
<View style={styles.header}>
|
|
<Text style={styles.title}>FLTR</Text>
|
|
<View
|
|
style={{
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
backgroundColor: "red",
|
|
width: "75%",
|
|
}}
|
|
>
|
|
<Text style={styles.categoryLabel}>Live TV</Text>
|
|
<Text>Hello</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|