Atticus White
Atticus White
If a translation key is provided, but doesn't exist in the localization, it should be handled gracefully. In this situation, if the element has text inside of it, it should...
Having a dark mode would be fantastic. Similar to [atom/markdown-preview](https://github.com/atom/markdown-preview). 
The published version of this library should be bundled and transpiled appropriately. Currently the original source is published to npm, but it can cause issues in certain testing environments. Instead,...
`Animated` components are currently unsupported. It's unclear if there is additional work needed for `Animated` component styles, or if they can simply be passed into `glamorous` to create a `glamorousComponentFactory`....
Currently we [manually test newer React Native components](https://github.com/robinpowered/glamorous-native/blob/c8086bb73c3bee95f151fa82307d9d392e34fbbe/src/react-native-elements.js#L30-L42) to ensure they're supported by the dependent's version of React Native. Instead, the library could be more flexible by dynamically asserting if...
This is a parity story to https://github.com/paypal/glamorous/issues/219. ### Before ```js const MyText = glamorous.text((props, theme) => ({ fontSize: theme.main.fontSize, })) ``` ### After ```js const MyText = glamorous.text(({theme}) => ({...
This is a feature that should be added to stay in parity with `glamorous`. Tracking issue for https://github.com/paypal/glamorous/issues/135 PR: https://github.com/paypal/glamorous/pull/168 Example usages: ```js const StyledView = glamorous.view({ padding: 10 })...
Parity story for `glamorous` Issue Reference: https://github.com/paypal/glamorous/issues/133 PR Reference: https://github.com/paypal/glamorous/pull/149
Copied from https://github.com/robinpowered/glamorous-native/pull/67#issuecomment-335768096: ---- How about usage of `propsAreStyleOverrides`? At least at first glance it seems to be fundamentally incompatible with static typing as it changes the type by runtime...
Prop forwarding is currently using a naive approach of verifying the property is not a style prop name: [src/is-style-prop](https://github.com/robinpowered/glamorous-native/blob/master/src/is-style-prop.js) It should verify the property is allowed by the component. A...