Skip to content

0.3.0

Latest
Compare
Choose a tag to compare
@JoshSweaterGuy JoshSweaterGuy released this 15 Jul 06:43

This release focused on css properties and their usage. As well, creating more unique syntax separating sailor from swiftUIs syntax.

  • more css properties support
  • more "swifty" css properties redesign
  • minor bug fixes/improvements
  • syntax changes from swiftui-like State/StateObject to Signal/Store

Example:

...
            H1("Welcome to my \(testObject.num)")
                .style {
                    CSS.textEmphasis(style: .character(">"))
                    CSS.textEmphasis(color: .red)
                    CSS.object(fit: .fill)
                    CSS.object(position: .with(.left, .in(10), .bottom, .ch(10)))
                    CSS.margin(.auto)

                }
...