Sallar
Sallar
@khoren93 sure. that's possible. however I currently don't have the time but it should be pretty simple to add using NextJS.
@IndigoWizard this app only supports what GitHub shows already on your profile and does not use the GitHub API. `github.com/USERNAME` is the format.
I investigated a little bit, `6.13.0` works perfectly but `6.14.0` breaks the color changes. After adding this: ``` require('react-native-ui-lib/config').setConfig({appScheme: 'default'}); ``` `6.18.0` works great, but `6.19.0` breaks. Maybe something related...
Thanks @lidord-wix I did the exact thing you mentioned: `index.js`: ```js import './setup'; import 'react-native-gesture-handler'; import {registerRootComponent} from 'rnn-screens'; // ... ``` `setup.ts`: ```ts require('react-native-ui-lib/config').setConfig({appScheme: 'default'}); ``` and everything works,...
@lidord-wix yes, ```ts const colors: DesignSystemColors = { primary: '#5383b8', // blue secondary: '#469c57', // green accent: '#fed330', // yellow blackish: Colors.rgba(20, 20, 20, 1), blackish2: Colors.rgba(50, 50, 50, 1),...
Another issue, `` also only works between appearance modes when I explicitly set the color myself: ``, otherwise the default colors from react-native-ui-lib's design tokens don't come through. so this...
@lidord-wix if the app needs to reload then everything works as expected. all my comments regarding stuff not working are related to "dynamic" scheme changes. do you think this will...
@lidord-wix thanks- if `platformColor` or `dyanmicColorIOS` is used then things *should* work at least on iOS
Thanks @kanzitelli! I was actually testing this library with rnn-starter haha. But your patch works flawlessly. Thank you! Just one thing, the default design tokens, eg, `$textDefault` still don't work...
@kanzitelli I will use the new rnn-starter 👍 Design tokens are the colors that are used for light/dark mode by default in new versions of the library. For example `Text`...