Skip to content

1.0.1

Compare
Choose a tag to compare
@benlmyers benlmyers released this 28 Jun 06:53
· 30 commits to main since this release

Thanks for using ShinySwiftUI! 🎉

New Features

  • Create a repeating action using the .every(_:perform:) modifier:
MyView().every(3.0) { print("Hello!") }
  • Create a delayed action using the .after(_:perform:) modifier:
MyView().after(3.0) { print("Hello!") }
  • ShinySwiftUI is now watchOS compatible!

Minor Additions

  • Added an optional isTrailing parameter to .pageTransition() for forward and back page transitions