Skip to content

Instantly share code, notes, and snippets.

@charlag
Last active August 20, 2016 15:36
Show Gist options
  • Save charlag/83e3fe1181ead0e79f088ec6194a12b8 to your computer and use it in GitHub Desktop.
Save charlag/83e3fe1181ead0e79f088ec6194a12b8 to your computer and use it in GitHub Desktop.
enum AuthCellType: String {
case Headline
case EmailTextField
case NameTextField
case PasswordTextField
case LoginButton
case Separator
}
extension AuthCellType: IdentifiableType {
var identity: String { return rawValue }
}
typealias AuthSection = AnimatableSectionModel<Int, AuthCellType>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment