62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import { Link } from "expo-router";
|
|
import {
|
|
Platform,
|
|
ScrollView,
|
|
StyleSheet,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from "react-native";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
|
|
export default function Warning() {
|
|
return (
|
|
<SafeAreaView style={{ flex: 1 }}>
|
|
<ScrollView contentContainerStyle={styles.scrollContent}>
|
|
<View style={styles.container}>
|
|
<Text style={styles.titleText}>Nhật Ký Chuyến Đi</Text>
|
|
|
|
<Link href="/modal" asChild>
|
|
<TouchableOpacity style={styles.button}>
|
|
<Text style={styles.buttonText}>Mở Modal</Text>
|
|
</TouchableOpacity>
|
|
</Link>
|
|
</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",
|
|
}),
|
|
},
|
|
button: {
|
|
backgroundColor: "#007AFF",
|
|
paddingVertical: 14,
|
|
paddingHorizontal: 24,
|
|
borderRadius: 8,
|
|
marginTop: 20,
|
|
},
|
|
buttonText: {
|
|
color: "#fff",
|
|
fontSize: 16,
|
|
fontWeight: "600",
|
|
},
|
|
});
|