You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
import React from "react";
|
|
import Constants from "expo-constants";
|
|
import { StyleSheet, SafeAreaView, View } from "react-native";
|
|
|
|
function Screen({ children, style }) {
|
|
return (
|
|
<SafeAreaView style={[styles.screen, style]}>
|
|
<View style={[styles.view, style]}>{children}</View>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
screen: {
|
|
paddingTop: Constants.statusBarHeight,
|
|
flex: 1,
|
|
},
|
|
view: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
export default Screen;
|