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.
39 lines
976 B
39 lines
976 B
3 weeks ago
|
import React, { useEffect } from 'react';
|
||
|
import { config } from './config';
|
||
|
import { View, ViewProps } from 'react-native';
|
||
|
import { OverlayProvider } from '@gluestack-ui/core/overlay/creator';
|
||
|
import { ToastProvider } from '@gluestack-ui/core/toast/creator';
|
||
|
import { useColorScheme } from 'nativewind';
|
||
|
|
||
|
export type ModeType = 'light' | 'dark' | 'system';
|
||
|
|
||
|
export function GluestackUIProvider({
|
||
|
mode = 'light',
|
||
|
...props
|
||
|
}: {
|
||
|
mode?: ModeType;
|
||
|
children?: React.ReactNode;
|
||
|
style?: ViewProps['style'];
|
||
|
}) {
|
||
|
const { colorScheme, setColorScheme } = useColorScheme();
|
||
|
|
||
|
useEffect(() => {
|
||
|
setColorScheme(mode);
|
||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
|
}, [mode]);
|
||
|
|
||
|
return (
|
||
|
<View
|
||
|
style={[
|
||
|
config[colorScheme!],
|
||
|
{ flex: 1, height: '100%', width: '100%' },
|
||
|
props.style,
|
||
|
]}
|
||
|
>
|
||
|
<OverlayProvider>
|
||
|
<ToastProvider>{props.children}</ToastProvider>
|
||
|
</OverlayProvider>
|
||
|
</View>
|
||
|
);
|
||
|
}
|