You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently working on a themeable react native project and wanted to implement cascading styles with child selectors.
I saw that you wrote in your FAQ, that cascading childs and complex CSS selectors are not supported:
There is no cascade, CSS properties are not inherited from parent elements.
No complex CSS selectors. There is only support for simple CSS class selector that maps 1-to-1 with an element.
and wanted to add this optional feature.
I had a look at the internal react properties and theoretically could make child selectors, however can't subscribe for child element updates.
Do you have any idea how this feature could theoretically be implemented?
The text was updated successfully, but these errors were encountered:
it would be very easy to support multiple classes className="button primary" if you patch the React.createElement method and add the corresponding style.props for the classNames.
I'm currently working on a themeable react native project and wanted to implement cascading styles with child selectors.
I saw that you wrote in your FAQ, that cascading childs and complex CSS selectors are not supported:
and wanted to add this optional feature.
I had a look at the internal react properties and theoretically could make child selectors, however can't subscribe for child element updates.
Do you have any idea how this feature could theoretically be implemented?
The text was updated successfully, but these errors were encountered: