({children, style })
| 3 | import Constants from 'expo-constants' |
| 4 | |
| 5 | export default function Screen({children, style }) { |
| 6 | return ( |
| 7 | <SafeAreaView style={[styles.container, style]}> |
| 8 | <View style={[styles.view, style]}> |
| 9 | {children} |
| 10 | </View> |
| 11 | </SafeAreaView> |
| 12 | ) |
| 13 | } |
| 14 | |
| 15 | const styles = StyleSheet.create({ |
| 16 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected