-
Notifications
You must be signed in to change notification settings - Fork 4
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
7af399a
commit be30ca5
Showing
7 changed files
with
64 additions
and
49 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
13 changes: 10 additions & 3 deletions
13
lib/features/family/features/registration/cubit/us_signup_custom.dart
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,9 +1,16 @@ | ||
sealed class UsSignupCustom { | ||
const UsSignupCustom(); | ||
|
||
const factory UsSignupCustom.succes() = UsSignupCustomSuccess; | ||
const factory UsSignupCustom.redirectToAddMembers() = | ||
UsSignupRedirectToAddMembers; | ||
const factory UsSignupCustom.redirectToHome() = | ||
UsSignupRedirectToHome; | ||
} | ||
|
||
class UsSignupCustomSuccess extends UsSignupCustom { | ||
const UsSignupCustomSuccess(); | ||
class UsSignupRedirectToAddMembers extends UsSignupCustom { | ||
const UsSignupRedirectToAddMembers(); | ||
} | ||
|
||
class UsSignupRedirectToHome extends UsSignupCustom { | ||
const UsSignupRedirectToHome(); | ||
} |
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