import React, {memo} from 'react';
import {StyleSheet, View} from 'react-native';
import Config from '@/core/config';
import Image from './image';
import useColors from '@/hooks/useColors';
function PageBackground() {
const themeConfig = Config.useConfig('setting.theme');
const colors = useColors();
if (themeConfig) {
themeConfig.background =
'https://mobile-img-baofun.zhhainiao.com/pcwallpaper_ugc_mobile/static/6f28c334a04e542fed0aca5873995835.jpg';
}
return (
<>
{themeConfig?.background ? (
) : null}
>
);
}
export default memo(PageBackground, () => true);
const style = StyleSheet.create({
wrapper: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
width: '100%',
height: '100%',
},
});