Skip to content

Commit

Permalink
Update MainActivity.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
cnrture committed Jul 14, 2023
1 parent 504ac0f commit 73acb1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/com/canerture/sample/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class MainActivity : ComponentActivity() {
color = Color.Black,
size = 16.dp
),
onDismiss = { it: String ->
onDismiss = {
textPickerShowState = false
}
)
Expand Down Expand Up @@ -163,7 +163,7 @@ class MainActivity : ComponentActivity() {
backgroundColor = Color.White
),
checkboxColors = CheckboxDefaults.colors(),
onDismiss = { it: List<String> ->
onDismiss = {
checkBoxPickerShowState = false
}
)
Expand Down Expand Up @@ -203,7 +203,7 @@ class MainActivity : ComponentActivity() {
backgroundColor = Color.White
),
radioButtonColors = RadioButtonDefaults.colors(),
onDismiss = { it: String ->
onDismiss = {
radioButtonPickerShowState = false
}
)
Expand Down

0 comments on commit 73acb1b

Please sign in to comment.