1
1
# ColorSheet
2
-
3
2
A color picker bottom sheet
4
3
4
+ [ ![ Download] ( https://api.bintray.com/packages/sasikanthmiriyampalli/maven/color-sheet/images/download.svg?version=1.0.0 ) ] ( https://bintray.com/sasikanthmiriyampalli/maven/color-sheet/1.0.0/link )
5
+
5
6
```
6
- TODO: Maven upload pending
7
+ implementation "dev.sasikanth:colorsheet:1.0.0"
7
8
```
8
9
9
10
## Usage
10
-
11
11
** Default color sheet, it will show grid of colors**
12
12
13
13
<img width =" 300 " alt =" portfolio_view " src =" ./art/color_sheet.png " >
@@ -17,10 +17,11 @@ A color picker bottom sheet
17
17
ColorSheet().colorPicker(
18
18
colors = colors,
19
19
listener = { color ->
20
- // Handle colors
20
+ // Handle color
21
21
})
22
22
.show(supportFragmentManager)
23
- ````
23
+ ```
24
+
24
25
---
25
26
26
27
** Color sheet with "no color" option**
@@ -33,13 +34,13 @@ ColorSheet().colorPicker(
33
34
colors = colors,
34
35
noColorOption = true,
35
36
listener = { color ->
36
- // Handle Color
37
+ // Handle color
37
38
})
38
39
.show(supportFragmentManager)
39
- ````
40
+ ```
40
41
With this you will get a no color option at start, when user selects this it will return ** ColorSheet.NO_COLOR** .
41
42
42
- -- -
43
+ - - - -
43
44
44
45
To mark the color as selected in color sheet, specify selectedColor in colorPicker
45
46
@@ -48,27 +49,23 @@ ColorSheet().colorPicker(
48
49
colors = colors,
49
50
selectedColor = color,
50
51
listener = { color ->
51
- // Handle Color
52
+ // Handle color
52
53
})
53
54
.show(supportFragmentManager)
54
55
```
55
56
56
- ---
57
-
57
+ - - - -
58
58
### Misc
59
-
60
- **Corner radius**<br>
59
+ ** Corner radius**
61
60
Default corner radius is 4dp. You can set your own corner radius like this
62
61
```
63
62
ColorSheet().cornerRadius(8)
64
63
```
65
- <br>
66
64
67
65
** Color to Hex string**
68
66
```
69
67
ColorSheetUtils.colorToHex(color)
70
68
```
71
- <br>
72
69
73
70
** Sheet title textAppearance**
74
71
```
@@ -96,4 +93,3 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
96
93
See the License for the specific language governing permissions and
97
94
limitations under the License.
98
95
```
99
-
0 commit comments