Skip to content

Commit

Permalink
[Add/#6] SignInState, SignUpState 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
SYAAINN committed Sep 21, 2024
1 parent 886c440 commit bd25f09
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.sopt.now.compose.presentation.ui.auth.screen

sealed class SignInState {
data object Idle: SignInState()
data object IdInvalid: SignInState()
data object PasswordInvalid: SignInState()
data object Success: SignInState()
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.sopt.now.compose.presentation.ui.auth.screen

sealed class SignUpState {
data object Idle: SignUpState()
data object IdInvalid: SignUpState()
data object PasswordInvalid: SignUpState()
data object NicknameInvalid: SignUpState()
data object PhoneNumberInvalid: SignUpState()
data object Success: SignUpState()
}

0 comments on commit bd25f09

Please sign in to comment.