Skip to content

1.1.0

Compare
Choose a tag to compare
@benlmyers benlmyers released this 10 Aug 10:53
· 16 commits to main since this release

Thanks for using ShinySwiftUI! 🎉

New Features

Easily make dynamic content based on clicking/hovering with HoverView:

HoverView { hover in
  Rectangle().foregroundColor(hover ? .red : .blue)
}

HoverView { hover, clicked in ... }

Minor Additions

  • Added the eight, .slight, and .verySlight opacity levels.
  • Added a UnitPoint method for tracking mouse movement .trackingMouseUnit(...)
  • .slickAnimation(...) can be disabled by setting "reduced_animations" user default to false
  • Added a .reverseMask(...) view modifier
  • Added a .float transition
  • Added a duration: field to .slickAnimation(...)

Fixes

  • Fixed issues with ShinySwiftUI operator precedence