SwiftUI Create Account View
A SwiftUI View that handles user input when creating an account with an email and password.
 
 
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.