Skip to content

Commit e18f36f

Browse files
committed
Verbiage
1 parent db804c0 commit e18f36f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Modal bottom sheet dialog based on the [Material Guidelines](https://material.io
77
<img src="/art/simple.png?raw=true" width="200px"> <img src="/art/header.png?raw=true" width="200px"> <img src="/art/custom.png?raw=true" width="200px">
88

99
## Usage
10-
`ModalBottomSheetDialogFragment`s are controlled via a menu item resource. The menu item resource defined what the title, icon, and ID is of each option. The menu item resource might looks something like this:
10+
`ModalBottomSheetDialogFragment`s are typically inflated via a menu item resource. The menu item resource defines the title, icon, and ID is of each `Option`. The menu item resource might looks something like this:
1111
```xml
1212
<?xml version="1.0" encoding="utf-8"?>
1313
<menu xmlns:android="http://schemas.android.com/apk/res/android">
@@ -29,7 +29,7 @@ Modal bottom sheet dialog based on the [Material Guidelines](https://material.io
2929

3030
</menu>
3131
```
32-
Then, use the builder to create and show the bottom sheet dialog:
32+
Use the builder to create and show the bottom sheet dialog:
3333
```kotlin
3434
ModalBottomSheetDialogFragment.Builder()
3535
.add(R.menu.options)
@@ -53,6 +53,7 @@ ModalBottomSheetDialogFragment.Builder()
5353
.columns(3)
5454
.show(supportFragmentManager, "custom")
5555
```
56+
See the sample app for more.
5657

5758
License
5859
--------

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ android {
2424

2525
dependencies {
2626
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
27-
implementation 'com.android.support:appcompat-v7:27.0.2'
27+
implementation 'com.android.support:appcompat-v7:27.1.0'
2828
implementation project(':modalbottomsheetdialogfragment')
2929
}

modalbottomsheetdialogfragment/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ android {
2525

2626
dependencies {
2727
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
28-
api 'com.android.support:design:27.0.2'
29-
api 'com.android.support:recyclerview-v7:27.0.2'
28+
api 'com.android.support:design:27.1.0'
29+
api 'com.android.support:recyclerview-v7:27.1.0'
3030
}

0 commit comments

Comments
 (0)