From 4e5abc21e967e083f6de494ef7b8a401cdcfff6b Mon Sep 17 00:00:00 2001 From: MinhNN Date: Fri, 31 Oct 2025 01:33:53 +0700 Subject: [PATCH] =?UTF-8?q?fix=20text=20(Th=C3=B4ng=20Tin=20Chuy=E1=BA=BFn?= =?UTF-8?q?=20=C4=90i)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/tripInfo.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) 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", + }), + }, });