32 lines
946 B
TypeScript
32 lines
946 B
TypeScript
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 { SafeAreaView } from "react-native-safe-area-context";
|
|
|
|
export default function TripInfoScreen() {
|
|
return (
|
|
<SafeAreaView style={{ flex: 1 }}>
|
|
<ScrollView contentContainerStyle={styles.scrollContent}>
|
|
<View style={styles.container}>
|
|
<ThemedText type="title">Thông Tin Chuyến Đi</ThemedText>
|
|
<TripCostTable />
|
|
<FishingToolsTable />
|
|
<CrewListTable />
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
scrollContent: {
|
|
flexGrow: 1,
|
|
},
|
|
container: {
|
|
alignItems: "center",
|
|
padding: 15,
|
|
},
|
|
});
|