import React from 'react'; import { NativeBaseProvider, extendTheme } from 'native-base'; import { Content } from './Content'; export const Example = () => { const config = { useSystemColorMode: false, initialColorMode: 'dark', }; const customTheme = extendTheme({ config }); return ( ); };