-
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.
* feat: implement Screen * chore: remove unnecessary logic * chore: remove default parameter * chore: reformat * feat: implement GrowTreeApp * chore: enable to start at MainActivity * chore: update FinalCharacter navigation Logic * chore: update HomeScreen navigation Logic * chore: delete other activities * chore: delete UiModels.kt * chore: update FinalCharacter Screen * chore: remove navigateToFinalCharacter SharedFlow * chore: update navigate function * chore: enable EdgeToEdge * chore: add arguments to home * chore: functionalize * chore: handle onBackPressed in home
- Loading branch information
1 parent
ddfbc49
commit c511d6b
Showing
19 changed files
with
272 additions
and
345 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 was deleted.
Oops, something went wrong.
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
82 changes: 0 additions & 82 deletions
82
...rc/main/java/univ/earthbreaker/namu/feature/character/growfinal/FinalCharacterActivity.kt
This file was deleted.
Oops, something went wrong.
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
3 changes: 2 additions & 1 deletion
3
...in/java/univ/earthbreaker/namu/feature/character/growfinal/model/FinalCharacterActions.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,5 +1,6 @@ | ||
package univ.earthbreaker.namu.feature.character.growfinal.model | ||
|
||
data class FinalCharacterActions( | ||
val moveToNextMessage: () -> Unit, | ||
val navigateToHome: (characterNo: Int) -> Unit, | ||
val moveToNextMessage: (navigateToHome: (characterNo: Int) -> Unit) -> Unit, | ||
) |
Oops, something went wrong.