The problem
For new comers, having to use {"title": ...} & styles##title isn't straightforward.
Considered solution
We cannot use record in StyleSheet.create so we could write a simple ppx to help
[@react.stylesheet]
let styles = StyleSheet.create({title: ...})
// which will allow
styles.title;
I discussed with @bloodyowl about this & he told me a ppx solution should be easy to do.
Do you think that's a good idea to investigate?
(note: this will be optional & shouldn't be a breaking change in any sort)
Alternatives solutions
I don't see any.
The problem
For new comers, having to use
{"title": ...}&styles##titleisn't straightforward.Considered solution
We cannot use record in
StyleSheet.createso we could write a simple ppx to helpI discussed with @bloodyowl about this & he told me a ppx solution should be easy to do.
Do you think that's a good idea to investigate?
(note: this will be optional & shouldn't be a breaking change in any sort)
Alternatives solutions
I don't see any.