Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
ColorPickerDialog
.Builder(this) // Pass Activity Instance
.setTitle("Pick Theme") // Default "Choose Color"
.setColorShape(ColorShape.SQAURE) // Default ColorShape.CIRCLE
.setColorShape(ColorShape.SQUARE) // Default ColorShape.CIRCLE
.setDefaultColor(mDefaultColor) // Pass Default Color
.setColorListener { color, colorHex ->
// Handle Color Selection
Expand All @@ -70,7 +70,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
new ColorPickerDialog
.Builder(this)
.setTitle("Pick Theme")
.setColorShape(ColorShape.SQAURE)
.setColorShape(ColorShape.SQUARE)
.setDefaultColor(mDefaultColor)
.setColorListener(new ColorListener() {
@Override
Expand All @@ -89,7 +89,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
MaterialColorPickerDialog
.Builder(this) // Pass Activity Instance
.setTitle("Pick Theme") // Default "Choose Color"
.setColorShape(ColorShape.SQAURE) // Default ColorShape.CIRCLE
.setColorShape(ColorShape.SQUARE) // Default ColorShape.CIRCLE
.setColorSwatch(ColorSwatch._300) // Default ColorSwatch._500
.setDefaultColor(mDefaultColor) // Pass Default Color
.setColorListener { color, colorHex ->
Expand All @@ -103,7 +103,7 @@ Yet another Color Picker Library for Android. It is highly customizable and easy
new MaterialColorPickerDialog
.Builder(this)
.setTitle("Pick Theme")
.setColorShape(ColorShape.SQAURE)
.setColorShape(ColorShape.SQUARE)
.setColorSwatch(ColorSwatch._300)
.setDefaultColor(mDefaultColor)
.setColorListener(new ColorListener() {
Expand Down