MCPcopy Create free account
hub / github.com/coderkhalide/uber-clone / Screen

Function Screen

app/components/Screen.js:5–13  ·  view source on GitHub ↗
({children, style })

Source from the content-addressed store, hash-verified

3import Constants from 'expo-constants'
4
5export 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
15const styles = StyleSheet.create({
16 container: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected