Documentation

SwiftUI Create Account View

A SwiftUI View that handles user input when creating an account with an email and password.

CreateAccountView with a light color scheme. A SwiftUI Starter Kit Component.
CreateAccountView with a light color scheme.
CreateAccountView with a dark color scheme. A SwiftUI Starter Kit Component.
CreateAccountView with a dark color scheme.

Usage

CreateAccountView(
    interactor: CreateAccountInteractor(
        didAuthenticate: { user in
            // navigate into app
        }
    )
)

Features

  • Includes client side form validation and error handling.
  • Secure password text entry.
  • Supports light and dark device color schemes by default.
  • Supports font scaling via Dynamic Type.
  • Supports offline usage in SwiftUI Previews for easy debugging and testing.