pageBackground.tsx (19dc08ecf646164591cb30515347b693c01518c7) | pageBackground.tsx (242960d3fe7b3524027774192799cef72e2b818e) |
---|---|
1import React from 'react'; 2import {StyleSheet, View} from 'react-native'; | 1import React from 'react'; 2import {StyleSheet, View} from 'react-native'; |
3import {useConfig} from '@/common/localConfigManager'; | 3import {useConfig} from '@/core/localConfigManager'; |
4import {useTheme} from 'react-native-paper'; 5import {ImgAsset} from '@/constants/assetsConst'; 6import Image from './image'; 7 8export default function PageBackground() { 9 const themeConfig = useConfig('setting.theme'); 10 const theme = useTheme(); 11 --- 35 unchanged lines hidden --- | 4import {useTheme} from 'react-native-paper'; 5import {ImgAsset} from '@/constants/assetsConst'; 6import Image from './image'; 7 8export default function PageBackground() { 9 const themeConfig = useConfig('setting.theme'); 10 const theme = useTheme(); 11 --- 35 unchanged lines hidden --- |