@@ -48,17 +48,15 @@ build custom sheets on top of the existing functionality.
48
48
</p >
49
49
</p >
50
50
51
- Read in [ Deutsch] ( README.de_DE.md ) or [ 简体中文] ( README.zh_CN.md ) .
52
-
53
- <img src =" art/showcase.png " alt =" sheetss Library " >
51
+ <img src =" art/showcase.png " alt =" Sheets Library " >
54
52
55
53
## Table of Contents
56
54
57
55
- [ Get started] ( #get-started )
58
56
- [ Info Sheet] ( #info )
59
- - [ Options Sheet] ( #options )
60
- - [ Clock Time Sheet] ( #clock-time )
61
- - [ Time Sheet] ( #time )
57
+ - [ Option Sheet] ( #option )
58
+ - [ Clock Sheet] ( #clock )
59
+ - [ Duration Sheet] ( #duration )
62
60
- [ Input Sheet] ( #input )
63
61
- [ Calendar Sheet] ( #calendar )
64
62
- [ Storage Sheet] ( #storage )
@@ -214,7 +212,7 @@ For the default info sheet use it as following:
214
212
215
213
[ ![ Download] ( https://img.shields.io/maven-central/v/com.maxkeppeler.sheets/options.svg?label=Maven%20Central ) ] ( https://search.maven.org/artifact/com.maxkeppeler.sheets/options )
216
214
217
- The ` Options ` Sheet lets you display a grid or list of options.
215
+ The ` Option ` Sheet lets you display a grid or list of options.
218
216
219
217
<details open >
220
218
<br /><br />
@@ -306,11 +304,11 @@ For the default options sheet use it as following:
306
304
** Note** : Preselected options automatically increase the current selection while disabled options
307
305
decrease the maximum amount of choices.
308
306
309
- ## Clock Time
307
+ ## Clock
310
308
311
309
[ ![ Download] ( https://img.shields.io/maven-central/v/com.maxkeppeler.sheets/time-clock.svg?label=Maven%20Central ) ] ( https://search.maven.org/artifact/com.maxkeppeler.sheets/time-clock )
312
310
313
- The ` Clock Time ` Sheet lets you quickly pick a time.
311
+ The ` Clock ` Sheet lets you quickly pick a time.
314
312
315
313
<details >
316
314
<br /><br />
@@ -338,7 +336,7 @@ dependencies {
338
336
339
337
For the default clock time sheet, in 24-hours format, use it as following:
340
338
341
- ClockTimeSheet ().show(context) {
339
+ ClockSheet ().show(context) {
342
340
title("Wake-up time")
343
341
onPositive { clockTimeInMillis: Long ->
344
342
// Handle selected time
@@ -354,7 +352,7 @@ For the default clock time sheet, in 24-hours format, use it as following:
354
352
355
353
[ ![ Download] ( https://img.shields.io/maven-central/v/com.maxkeppeler.sheets/time.svg?label=Maven%20Central ) ] ( https://search.maven.org/artifact/com.maxkeppeler.sheets/time )
356
354
357
- The ` Time ` Sheet lets you pick a duration time in a specific format.
355
+ The ` Duration ` Sheet lets you pick a duration time in a specific format.
358
356
359
357
<details open >
360
358
<br /><br />
@@ -382,7 +380,7 @@ dependencies {
382
380
383
381
For the default time sheet use it as following:
384
382
385
- TimeSheet ().show(context) {
383
+ DurationSheet ().show(context) {
386
384
title("Snooze time")
387
385
onPositive { durationTimeInMillis: Long ->
388
386
// Handle selected time
@@ -853,7 +851,7 @@ Change the appearance of the content text.
853
851
<item name="sheetsContentLineHeight">@dimen/dimen</item>
854
852
<item name="sheetsContentLetterSpacing">value</item>
855
853
856
- Change the appearance of the value texts. (e.g. the time in the TimeSheet & ClockTimeSheet or the
854
+ Change the appearance of the value texts. (e.g. the time in the TimeSheet & ClockSheet or the
857
855
selected date & period in the Calendarsheet.)
858
856
859
857
<item name="sheetsValueTextActiveColor">@color/customValueTextColor</item>
0 commit comments