import React from 'react';
import {StyleSheet, View} from 'react-native';
import Config from '@/core/config';
import {useTheme} from 'react-native-paper';
import {ImgAsset} from '@/constants/assetsConst';
import Image from './image';
export default function PageBackground() {
const themeConfig = Config.useConfig('setting.theme');
const theme = useTheme();
return (
<>
>
);
}
const style = StyleSheet.create({
wrapper: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
width: '100%',
height: '100%',
},
});