Skip to content

Commit 43423da

Browse files
committed
[chore] #190 showActionToast 파라미터 순서 변경
1 parent 54cc55f commit 43423da

File tree

1 file changed

+2
-2
lines changed
  • core/ui/src/main/java/com/neki/android/core/ui/toast

1 file changed

+2
-2
lines changed

core/ui/src/main/java/com/neki/android/core/ui/toast/NekiToast.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ class NekiToast(
100100
}
101101

102102
fun showActionToast(
103-
@DrawableRes iconRes: Int = R.drawable.icon_checkbox_on,
104103
text: String,
105104
buttonText: String,
106-
onClickActionButton: () -> Unit,
105+
@DrawableRes iconRes: Int = R.drawable.icon_checkbox_on,
107106
duration: Int = Toast.LENGTH_SHORT,
107+
onClickActionButton: () -> Unit,
108108
) {
109109
makeToast(duration = duration) { dismiss ->
110110
NekiActionToast(

0 commit comments

Comments
 (0)