Skip to content

Preview all the Things!

Compare
Choose a tag to compare
@theoriginalbit theoriginalbit released this 02 Aug 02:25
· 9 commits to main since this release

Not only can you preview your UIViewControllers, but now there is support for your UIViews as well!

image

API Breaking changes:

  • Renamed PreviewView to Preview
  • You can no longer use .wrapInNavigationController(), instead make use of the second parameter Preview(for:navigationControllerStyle:)

Before:

PreviewView(for: YourViewController())
    .wrapInNavigationController()

After:

Preview(for: YourViewController(), navigationControllerStyle: .wrap())