liveview-native / live_view_native_stylesheet

MIT License
10 stars 4 forks source link

Child sheets #63

Closed bcardarella closed 5 months ago

bcardarella commented 5 months ago

This PR allows you to declare child sheets who's classes will be inherited at a lower priority than the parent's

defmodule ChildSheet do
  use LiveViewNative.Stylesheet, :swiftui
  @export true

  ~SHEET"""
    ...
  """
end

def ParentSheet do
  use LiveViewNative.Stylesheet, :swiftui
  @import ChildSheet
end