Skip to content

Commit 0e52553

Browse files
committed
arguments reordered.
1 parent 868f94a commit 0e52553

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

library/src/debug/java/io/syslogic/colorpicker/compose/ColorPickerDialogPreview.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package io.syslogic.colorpicker.compose
22

33
import androidx.compose.material.MaterialTheme
4+
45
import androidx.compose.runtime.Composable
6+
57
import androidx.compose.ui.graphics.Color
68
import androidx.compose.ui.tooling.preview.Preview
79

@@ -21,9 +23,9 @@ fun ColorPickerDialogPreview() {
2123
initialColor = Color(0xD31A3D9A),
2224
onColorChanged = null,
2325
showAlpha = true,
24-
showARGB = false,
25-
showHSV = false,
2626
showHex = true,
27+
showHSV = false,
28+
showARGB = false,
2729
showDialog = {}
2830
)
2931
}

library/src/debug/java/io/syslogic/colorpicker/compose/ColorPickerPreview.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ fun ColorPickerPreview() {
2121
initialColor = Color(0xD31A3D9A),
2222
onColorChanged = null,
2323
showAlpha = true,
24-
showARGB = true,
2524
showHSV = true,
25+
showARGB = true,
2626
showHex = true
2727
)
2828
}

0 commit comments

Comments
 (0)