eltos / SimpleDialogFragments

An Android library to create dialogs with ease and handle user interaction reliably, using fragments and material design.
Apache License 2.0
119 stars 17 forks source link

Bounds for circles in the color edit dialog needed. #29

Closed isabsent closed 6 years ago

isabsent commented 6 years ago

When I try to show white color in the color chooser dialog it is invisible because it has the same color as a background. It would be nice to have an opportunity to turn on black circle around the colors in the dialog builder.

eltos commented 6 years ago

Added a new method here, so you can either do .showOutline(SimpleColorDialog.AUTO) or .showOutline(Color.BLACK).

isabsent commented 6 years ago

Thanks a lot!