generated from ajou4095/template-android
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
20 changed files
with
402 additions
and
131 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
...n/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/model/main/MainBottomBarItem.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package ac.dnd.bookkeeping.android.presentation.model.main | ||
|
||
import androidx.annotation.DrawableRes | ||
|
||
data class MainBottomBarItem( | ||
val route: String, | ||
val name: String, | ||
@DrawableRes val icon: Int | ||
) |
56 changes: 0 additions & 56 deletions
56
...c/main/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/HomeBottomBarScreen.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
5 changes: 5 additions & 0 deletions
5
...ntation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/HomeEvent.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home | ||
|
||
sealed interface HomeEvent { | ||
data class ShowSnackBar(val message: String) : HomeEvent | ||
} |
3 changes: 3 additions & 0 deletions
3
...tation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/HomeIntent.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home | ||
|
||
sealed interface HomeIntent |
5 changes: 5 additions & 0 deletions
5
...ntation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/HomeModel.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home | ||
|
||
data class HomeModel( | ||
val state: HomeState, | ||
) |
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
5 changes: 5 additions & 0 deletions
5
...ntation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/HomeState.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home | ||
|
||
sealed interface HomeState { | ||
data object Init : HomeState | ||
} |
Oops, something went wrong.