-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06dc426
commit 4346f65
Showing
8 changed files
with
22 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/LoginScreenEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package club.nito.feature.auth | ||
|
||
sealed class LoginScreenEvent { | ||
data object LoggedIn : LoginScreenEvent() | ||
data object NavigateToRegister : LoginScreenEvent() | ||
public sealed class LoginScreenEvent { | ||
public data object LoggedIn : LoginScreenEvent() | ||
public data object NavigateToRegister : LoginScreenEvent() | ||
} |
10 changes: 5 additions & 5 deletions
10
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/LoginScreenIntent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package club.nito.feature.auth | ||
|
||
sealed class LoginScreenIntent { | ||
data class ChangeInputEmail(val email: String) : LoginScreenIntent() | ||
data class ChangeInputPassword(val password: String) : LoginScreenIntent() | ||
data object ClickSignIn : LoginScreenIntent() | ||
data object ClickRegister : LoginScreenIntent() | ||
public sealed class LoginScreenIntent { | ||
public data class ChangeInputEmail(val email: String) : LoginScreenIntent() | ||
public data class ChangeInputPassword(val password: String) : LoginScreenIntent() | ||
public data object ClickSignIn : LoginScreenIntent() | ||
public data object ClickRegister : LoginScreenIntent() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/LoginScreenUiState.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters