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
37 changed files
with
740 additions
and
2 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
...bookkeeping/android/presentation/ui/main/home/common/notification/NotificationConstant.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.common.notification | ||
|
||
object NotificationConstant { | ||
const val ROUTE: String = "/notification" | ||
} |
38 changes: 38 additions & 0 deletions
38
...kkeeping/android/presentation/ui/main/home/common/notification/NotificationDestination.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,38 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.common.notification | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.util.ErrorObserver | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.ApplicationState | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.remember | ||
import androidx.hilt.navigation.compose.hiltViewModel | ||
import androidx.lifecycle.compose.collectAsStateWithLifecycle | ||
import androidx.navigation.NavGraphBuilder | ||
import androidx.navigation.compose.composable | ||
|
||
fun NavGraphBuilder.notificationDestination( | ||
appState: ApplicationState | ||
) { | ||
composable( | ||
route = NotificationConstant.ROUTE | ||
) { | ||
val viewModel: NotificationViewModel = hiltViewModel() | ||
|
||
val model: NotificationModel = let { | ||
val state by viewModel.state.collectAsStateWithLifecycle() | ||
|
||
NotificationModel( | ||
state = state | ||
) | ||
} | ||
|
||
ErrorObserver(viewModel) | ||
|
||
NotificationScreen( | ||
appState = appState, | ||
model = model, | ||
event = viewModel.event, | ||
intent = viewModel::onIntent, | ||
handler = viewModel.handler | ||
) | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...nd/bookkeeping/android/presentation/ui/main/home/common/notification/NotificationEvent.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.common.notification | ||
|
||
sealed interface NotificationEvent |
3 changes: 3 additions & 0 deletions
3
...d/bookkeeping/android/presentation/ui/main/home/common/notification/NotificationIntent.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.common.notification | ||
|
||
sealed interface NotificationIntent |
5 changes: 5 additions & 0 deletions
5
...nd/bookkeeping/android/presentation/ui/main/home/common/notification/NotificationModel.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.common.notification | ||
|
||
data class NotificationModel( | ||
val state: NotificationState, | ||
) |
48 changes: 48 additions & 0 deletions
48
...d/bookkeeping/android/presentation/ui/main/home/common/notification/NotificationScreen.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,48 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.common.notification | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.util.LaunchedEffectWithLifecycle | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.EventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.MutableEventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.eventObserve | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.ApplicationState | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.rememberApplicationState | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.rememberCoroutineScope | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import kotlinx.coroutines.CoroutineExceptionHandler | ||
|
||
@Composable | ||
fun NotificationScreen( | ||
appState: ApplicationState, | ||
model: NotificationModel, | ||
event: EventFlow<NotificationEvent>, | ||
intent: (NotificationIntent) -> Unit, | ||
handler: CoroutineExceptionHandler | ||
) { | ||
val scope = rememberCoroutineScope() | ||
|
||
Box { | ||
|
||
} | ||
|
||
LaunchedEffectWithLifecycle(event, handler) { | ||
event.eventObserve { event -> | ||
|
||
} | ||
} | ||
} | ||
|
||
@Preview | ||
@Composable | ||
fun NotificationScreenPreview() { | ||
NotificationScreen( | ||
appState = rememberApplicationState(), | ||
model = NotificationModel( | ||
state = NotificationState.Init | ||
), | ||
event = MutableEventFlow(), | ||
intent = {}, | ||
handler = CoroutineExceptionHandler { _, _ -> } | ||
) | ||
} |
5 changes: 5 additions & 0 deletions
5
...nd/bookkeeping/android/presentation/ui/main/home/common/notification/NotificationState.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.common.notification | ||
|
||
sealed interface NotificationState { | ||
data object Init : NotificationState | ||
} |
29 changes: 29 additions & 0 deletions
29
...ookkeeping/android/presentation/ui/main/home/common/notification/NotificationViewModel.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,29 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.common.notification | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.base.BaseViewModel | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.EventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.MutableEventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.asEventFlow | ||
import androidx.lifecycle.SavedStateHandle | ||
import dagger.hilt.android.lifecycle.HiltViewModel | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.flow.StateFlow | ||
import kotlinx.coroutines.flow.asStateFlow | ||
import javax.inject.Inject | ||
|
||
@HiltViewModel | ||
class NotificationViewModel @Inject constructor( | ||
private val savedStateHandle: SavedStateHandle, | ||
) : BaseViewModel() { | ||
|
||
private val _state: MutableStateFlow<NotificationState> = | ||
MutableStateFlow(NotificationState.Init) | ||
val state: StateFlow<NotificationState> = _state.asStateFlow() | ||
|
||
private val _event: MutableEventFlow<NotificationEvent> = MutableEventFlow() | ||
val event: EventFlow<NotificationEvent> = _event.asEventFlow() | ||
|
||
fun onIntent(intent: NotificationIntent) { | ||
|
||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
.../bookkeeping/android/presentation/ui/main/home/common/relation/add/AddRelationConstant.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
2 changes: 1 addition & 1 deletion
2
.../bookkeeping/android/presentation/ui/main/home/common/relation/get/GetRelationConstant.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,5 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.common.relation.get | ||
|
||
object GetRelationConstant { | ||
const val ROUTE: String = "searchName" | ||
const val ROUTE: String = "/searchName" | ||
} |
5 changes: 5 additions & 0 deletions
5
.../kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleConstant.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.schedule | ||
|
||
object ScheduleConstant { | ||
const val ROUTE: String = "/schedule" | ||
} |
3 changes: 3 additions & 0 deletions
3
...ain/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleEvent.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.schedule | ||
|
||
sealed interface ScheduleEvent |
3 changes: 3 additions & 0 deletions
3
...in/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleIntent.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.schedule | ||
|
||
sealed interface ScheduleIntent |
5 changes: 5 additions & 0 deletions
5
...ain/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleModel.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.schedule | ||
|
||
data class ScheduleModel( | ||
val state: ScheduleState, | ||
) |
48 changes: 48 additions & 0 deletions
48
...in/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleScreen.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,48 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.util.LaunchedEffectWithLifecycle | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.EventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.MutableEventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.eventObserve | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.ApplicationState | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.rememberApplicationState | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.rememberCoroutineScope | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import kotlinx.coroutines.CoroutineExceptionHandler | ||
|
||
@Composable | ||
fun ScheduleScreen( | ||
appState: ApplicationState, | ||
model: ScheduleModel, | ||
event: EventFlow<ScheduleEvent>, | ||
intent: (ScheduleIntent) -> Unit, | ||
handler: CoroutineExceptionHandler | ||
) { | ||
val scope = rememberCoroutineScope() | ||
|
||
Box { | ||
|
||
} | ||
|
||
LaunchedEffectWithLifecycle(event, handler) { | ||
event.eventObserve { event -> | ||
|
||
} | ||
} | ||
} | ||
|
||
@Preview | ||
@Composable | ||
fun ScheduleScreenPreview() { | ||
ScheduleScreen( | ||
appState = rememberApplicationState(), | ||
model = ScheduleModel( | ||
state = ScheduleState.Init | ||
), | ||
event = MutableEventFlow(), | ||
intent = {}, | ||
handler = CoroutineExceptionHandler { _, _ -> } | ||
) | ||
} |
5 changes: 5 additions & 0 deletions
5
...ain/kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleState.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.schedule | ||
|
||
sealed interface ScheduleState { | ||
data object Init : ScheduleState | ||
} |
28 changes: 28 additions & 0 deletions
28
...kotlin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/ScheduleViewModel.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,28 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.base.BaseViewModel | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.EventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.MutableEventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.asEventFlow | ||
import androidx.lifecycle.SavedStateHandle | ||
import dagger.hilt.android.lifecycle.HiltViewModel | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.flow.StateFlow | ||
import kotlinx.coroutines.flow.asStateFlow | ||
import javax.inject.Inject | ||
|
||
@HiltViewModel | ||
class ScheduleViewModel @Inject constructor( | ||
private val savedStateHandle: SavedStateHandle, | ||
) : BaseViewModel() { | ||
|
||
private val _state: MutableStateFlow<ScheduleState> = MutableStateFlow(ScheduleState.Init) | ||
val state: StateFlow<ScheduleState> = _state.asStateFlow() | ||
|
||
private val _event: MutableEventFlow<ScheduleEvent> = MutableEventFlow() | ||
val event: EventFlow<ScheduleEvent> = _event.asEventFlow() | ||
|
||
fun onIntent(intent: ScheduleIntent) { | ||
|
||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
.../ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddConstant.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,7 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule.add | ||
|
||
import ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule.ScheduleConstant | ||
|
||
object ScheduleAddConstant { | ||
const val ROUTE: String = "${ScheduleConstant.ROUTE}/add" | ||
} |
38 changes: 38 additions & 0 deletions
38
.../dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddDestination.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,38 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule.add | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.util.ErrorObserver | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.ApplicationState | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.remember | ||
import androidx.hilt.navigation.compose.hiltViewModel | ||
import androidx.lifecycle.compose.collectAsStateWithLifecycle | ||
import androidx.navigation.NavGraphBuilder | ||
import androidx.navigation.compose.composable | ||
|
||
fun NavGraphBuilder.scheduleAddDestination( | ||
appState: ApplicationState | ||
) { | ||
composable( | ||
route = ScheduleAddConstant.ROUTE | ||
) { | ||
val viewModel: ScheduleAddViewModel = hiltViewModel() | ||
|
||
val model: ScheduleAddModel = let { | ||
val state by viewModel.state.collectAsStateWithLifecycle() | ||
|
||
ScheduleAddModel( | ||
state = state | ||
) | ||
} | ||
|
||
ErrorObserver(viewModel) | ||
|
||
ScheduleAddScreen( | ||
appState = appState, | ||
model = model, | ||
event = viewModel.event, | ||
intent = viewModel::onIntent, | ||
handler = viewModel.handler | ||
) | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...lin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddEvent.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.schedule.add | ||
|
||
sealed interface ScheduleAddEvent |
3 changes: 3 additions & 0 deletions
3
...in/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddIntent.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.schedule.add | ||
|
||
sealed interface ScheduleAddIntent |
5 changes: 5 additions & 0 deletions
5
...lin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddModel.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.schedule.add | ||
|
||
data class ScheduleAddModel( | ||
val state: ScheduleAddState, | ||
) |
48 changes: 48 additions & 0 deletions
48
...in/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddScreen.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,48 @@ | ||
package ac.dnd.bookkeeping.android.presentation.ui.main.home.schedule.add | ||
|
||
import ac.dnd.bookkeeping.android.presentation.common.util.LaunchedEffectWithLifecycle | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.EventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.MutableEventFlow | ||
import ac.dnd.bookkeeping.android.presentation.common.util.coroutine.event.eventObserve | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.ApplicationState | ||
import ac.dnd.bookkeeping.android.presentation.ui.main.rememberApplicationState | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.rememberCoroutineScope | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import kotlinx.coroutines.CoroutineExceptionHandler | ||
|
||
@Composable | ||
fun ScheduleAddScreen( | ||
appState: ApplicationState, | ||
model: ScheduleAddModel, | ||
event: EventFlow<ScheduleAddEvent>, | ||
intent: (ScheduleAddIntent) -> Unit, | ||
handler: CoroutineExceptionHandler | ||
) { | ||
val scope = rememberCoroutineScope() | ||
|
||
Box { | ||
|
||
} | ||
|
||
LaunchedEffectWithLifecycle(event, handler) { | ||
event.eventObserve { event -> | ||
|
||
} | ||
} | ||
} | ||
|
||
@Preview | ||
@Composable | ||
fun ScheduleAddScreenPreview() { | ||
ScheduleAddScreen( | ||
appState = rememberApplicationState(), | ||
model = ScheduleAddModel( | ||
state = ScheduleAddState.Init | ||
), | ||
event = MutableEventFlow(), | ||
intent = {}, | ||
handler = CoroutineExceptionHandler { _, _ -> } | ||
) | ||
} |
5 changes: 5 additions & 0 deletions
5
...lin/ac/dnd/bookkeeping/android/presentation/ui/main/home/schedule/add/ScheduleAddState.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.schedule.add | ||
|
||
sealed interface ScheduleAddState { | ||
data object Init : ScheduleAddState | ||
} |
Oops, something went wrong.