import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet, Platform } from 'react-native'; const SelectionScreen = ({ navigation }) => { return ( navigation.navigate('Camera')}> 운행시작 navigation.navigate('Analysis')}> 히스토리 ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', // 중앙 정렬 alignItems: 'center', backgroundColor: '#fff', // 배경색 (흰색) }, startButton: { backgroundColor: '#007AFF', // iOS 스타일의 버튼 색상 borderRadius: 10, padding: 15, width: '80%', // 버튼 너비 alignItems: 'center', marginVertical: 10, // 버튼 간격 }, historyButton: { backgroundColor: '#CAF4FF', borderRadius: 10, padding: 15, width: '80%', // 버튼 너비 alignItems: 'center', marginVertical: 10, // 버튼 간격 }, buttonText: { color: '#FFFFFF', // 버튼 텍스트 색상 fontSize: 18, fontWeight: '600', // 텍스트 두께 }, blueButtonText: { color: '#007AFF', // 버튼 텍스트 색상 fontSize: 18, fontWeight: '600', // 텍스트 두께 }, }); export default SelectionScreen;