-
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
7c718a7
commit 646cb41
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
...stem/src/main/java/com/withpeace/withpeace/core/designsystem/ui/snackbar/SnackbarState.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,12 @@ | ||
package com.withpeace.withpeace.core.designsystem.ui.snackbar | ||
|
||
data class SnackbarState( | ||
val message: String, | ||
val snackbarType: SnackbarType = SnackbarType.Normal, | ||
) | ||
|
||
sealed interface SnackbarType { | ||
data object Normal : SnackbarType | ||
data class Navigator(val actionName: String, val action: () -> Unit) : | ||
SnackbarType | ||
} |