Skip to content

Instantly share code, notes, and snippets.

@charlag
Last active August 20, 2016 16:23
Show Gist options
  • Save charlag/e86b30afc2cfd42dd9741fd239311632 to your computer and use it in GitHub Desktop.
Save charlag/e86b30afc2cfd42dd9741fd239311632 to your computer and use it in GitHub Desktop.
enum LoginScreenState {
case ShowLogIn
case ShowSignUp
var cells: [AuthCellType] {
switch self {
case .ShowLogIn:
return [
.Headline,
.Separator,
.EmailTextField,
.PasswordTextField,
.LoginButton
]
case .ShowSignUp:
return [
.EmailTextField,
.NameTextField,
.PasswordTextField,
.LoginButton
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment