UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

15 lines 315 B
class Config { appScheme = 'light'; constructor() { this.setConfig({}); } async setConfig(options) { const { usePlatformColors = false, appScheme = 'light' } = options; this.usePlatformColors = usePlatformColors; this.appScheme = appScheme; } } export default new Config();