fix text (Thông Tin Chuyến Đi)
This commit is contained in:
@@ -1,8 +1,7 @@
|
|||||||
import { ThemedText } from "@/components/themed-text";
|
|
||||||
import CrewListTable from "@/components/tripInfo/CrewListTable";
|
import CrewListTable from "@/components/tripInfo/CrewListTable";
|
||||||
import FishingToolsTable from "@/components/tripInfo/FishingToolsList";
|
import FishingToolsTable from "@/components/tripInfo/FishingToolsList";
|
||||||
import TripCostTable from "@/components/tripInfo/TripCostTable";
|
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";
|
import { SafeAreaView } from "react-native-safe-area-context";
|
||||||
|
|
||||||
export default function TripInfoScreen() {
|
export default function TripInfoScreen() {
|
||||||
@@ -10,7 +9,7 @@ export default function TripInfoScreen() {
|
|||||||
<SafeAreaView style={{ flex: 1 }}>
|
<SafeAreaView style={{ flex: 1 }}>
|
||||||
<ScrollView contentContainerStyle={styles.scrollContent}>
|
<ScrollView contentContainerStyle={styles.scrollContent}>
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
<ThemedText type="title">Thông Tin Chuyến Đi</ThemedText>
|
<Text style={styles.titleText}>Thông Tin Chuyến Đi</Text>
|
||||||
<TripCostTable />
|
<TripCostTable />
|
||||||
<FishingToolsTable />
|
<FishingToolsTable />
|
||||||
<CrewListTable />
|
<CrewListTable />
|
||||||
@@ -28,4 +27,15 @@ const styles = StyleSheet.create({
|
|||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
padding: 15,
|
padding: 15,
|
||||||
},
|
},
|
||||||
|
titleText: {
|
||||||
|
fontSize: 32,
|
||||||
|
fontWeight: "700",
|
||||||
|
lineHeight: 40,
|
||||||
|
marginBottom: 10,
|
||||||
|
fontFamily: Platform.select({
|
||||||
|
ios: "System",
|
||||||
|
android: "Roboto",
|
||||||
|
default: "System",
|
||||||
|
}),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user