react-native-themed-styles
react-native-themed-styles copied to clipboard
Dead simple theming for React Native stylesheets
See: https://github.com/Intellicode/eslint-plugin-react-native/issues/283 is there a better way to do this?
Hi here 👋 When using a themed style with an Image component I got this error from TS: ``` Overload 1 of 2, '(props: Readonly): Image', gave the following error....
Not issue but a question. How do you use themed stylesheets on class components with dynamic theme? Can you show an example, if possible?
I have a monorepo with a module dedicated to themes with a very simple signature: ``` import { registerThemes } from 'react-native-themed-styles'; import { useColorScheme } from 'react-native-appearance'; import *...
Hi, thanks for the package, love the approach. I'm using it with TypeScript in `strict` mode. When I follow your example and use `createStyles` I get a type error at...