Skip to content

v0.7.1

Pre-release
Pre-release

Choose a tag to compare

@bitspittle bitspittle released this 02 Dec 06:08
· 3131 commits to main since this release

A quick patch this time since we've changed the API around component styling in a fairly invasive way, so best to get it done quickly.

  • Component styling now uses a DSL-like syntax instead of an assignment syntax. See 732b5b2 for more details.
  • Cleaned up web modifier behavior around margin and padding
    • Previously, in an attempt to emulate Jetpack Compose, we swapped these two concepts around (because, unfortunately, what Jetpack Compose introduces as padding is margin in CSS). However, due to confusion between Modifier.padding(10.px) and styleModifier { padding(10.px) } doing different things, we decided to make the function always act more consistently with the web.