44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import CrewListTable from "@/components/tripInfo/CrewListTable";
|
|
import FishingToolsTable from "@/components/tripInfo/FishingToolsList";
|
|
import NetListTable from "@/components/tripInfo/NetListTable";
|
|
import TripCostTable from "@/components/tripInfo/TripCostTable";
|
|
import { Platform, ScrollView, StyleSheet, Text, View } from "react-native";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
|
|
export default function TripInfoScreen() {
|
|
return (
|
|
<SafeAreaView style={{ flex: 1 }}>
|
|
<ScrollView contentContainerStyle={styles.scrollContent}>
|
|
<View style={styles.container}>
|
|
<Text style={styles.titleText}>Thông Tin Chuyến Đi</Text>
|
|
<TripCostTable />
|
|
<FishingToolsTable />
|
|
<CrewListTable />
|
|
<NetListTable />
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
scrollContent: {
|
|
flexGrow: 1,
|
|
},
|
|
container: {
|
|
alignItems: "center",
|
|
padding: 15,
|
|
},
|
|
titleText: {
|
|
fontSize: 32,
|
|
fontWeight: "700",
|
|
lineHeight: 40,
|
|
marginBottom: 10,
|
|
fontFamily: Platform.select({
|
|
ios: "System",
|
|
android: "Roboto",
|
|
default: "System",
|
|
}),
|
|
},
|
|
});
|