Skip to content

Commit 542b42f

Browse files
committed
Change module & sheet type names
1 parent cc285ca commit 542b42f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+172
-2006
lines changed

README.de_DE.md

Lines changed: 0 additions & 924 deletions
This file was deleted.

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,15 @@ build custom sheets on top of the existing functionality.
4848
</p>
4949
</p>
5050

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">
5452

5553
## Table of Contents
5654

5755
- [Get started](#get-started)
5856
- [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)
6260
- [Input Sheet](#input)
6361
- [Calendar Sheet](#calendar)
6462
- [Storage Sheet](#storage)
@@ -214,7 +212,7 @@ For the default info sheet use it as following:
214212

215213
[ ![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)
216214

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.
218216

219217
<details open>
220218
<br/><br/>
@@ -306,11 +304,11 @@ For the default options sheet use it as following:
306304
**Note**: Preselected options automatically increase the current selection while disabled options
307305
decrease the maximum amount of choices.
308306

309-
## Clock Time
307+
## Clock
310308

311309
[ ![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)
312310

313-
The `Clock Time` Sheet lets you quickly pick a time.
311+
The `Clock` Sheet lets you quickly pick a time.
314312

315313
<details>
316314
<br/><br/>
@@ -338,7 +336,7 @@ dependencies {
338336

339337
For the default clock time sheet, in 24-hours format, use it as following:
340338

341-
ClockTimeSheet().show(context) {
339+
ClockSheet().show(context) {
342340
title("Wake-up time")
343341
onPositive { clockTimeInMillis: Long ->
344342
// Handle selected time
@@ -354,7 +352,7 @@ For the default clock time sheet, in 24-hours format, use it as following:
354352

355353
[ ![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)
356354

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.
358356

359357
<details open>
360358
<br/><br/>
@@ -382,7 +380,7 @@ dependencies {
382380

383381
For the default time sheet use it as following:
384382

385-
TimeSheet().show(context) {
383+
DurationSheet().show(context) {
386384
title("Snooze time")
387385
onPositive { durationTimeInMillis: Long ->
388386
// Handle selected time
@@ -853,7 +851,7 @@ Change the appearance of the content text.
853851
<item name="sheetsContentLineHeight">@dimen/dimen</item>
854852
<item name="sheetsContentLetterSpacing">value</item>
855853

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
857855
selected date & period in the Calendarsheet.)
858856

859857
<item name="sheetsValueTextActiveColor">@color/customValueTextColor</item>

0 commit comments

Comments
 (0)