// src/components/Background.js import React from 'react'; import { StyleSheet, SafeAreaView, StatusBar } from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; const Background = ({ children, barcolor = 'light-content'}) => { return ( {children} ); }; const styles = StyleSheet.create({ container: { flex: 1, }, gradient: { flex: 1, }, }); export default Background;