diff --git a/app/(tabs)/tripInfo.tsx b/app/(tabs)/tripInfo.tsx index 294e214..20f3e62 100644 --- a/app/(tabs)/tripInfo.tsx +++ b/app/(tabs)/tripInfo.tsx @@ -1,8 +1,7 @@ -import { ThemedText } from "@/components/themed-text"; import CrewListTable from "@/components/tripInfo/CrewListTable"; import FishingToolsTable from "@/components/tripInfo/FishingToolsList"; import TripCostTable from "@/components/tripInfo/TripCostTable"; -import { ScrollView, StyleSheet, View } from "react-native"; +import { Platform, ScrollView, StyleSheet, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; export default function TripInfoScreen() { @@ -10,7 +9,7 @@ export default function TripInfoScreen() { - Thông Tin Chuyến Đi + Thông Tin Chuyến Đi @@ -28,4 +27,15 @@ const styles = StyleSheet.create({ alignItems: "center", padding: 15, }, + titleText: { + fontSize: 32, + fontWeight: "700", + lineHeight: 40, + marginBottom: 10, + fontFamily: Platform.select({ + ios: "System", + android: "Roboto", + default: "System", + }), + }, });