Skip to content

Commit

Permalink
fix issues with renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
allco committed Sep 15, 2018
1 parent 28424a7 commit 96b2a7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ Yes/No chooser
bottomSheet {
clickableItem {
title = "Document"
iconResTintColor = R.color.icon_document
tintColorRes = R.color.icon_document
iconRes = R.drawable.ic_insert_chart_black
onClicked = { toast(title.toString()) }
}
clickableItem {
title = "Spreadsheet"
iconResTintColor = R.color.icon_spreadsheet
tintColorRes = R.color.icon_spreadsheet
iconRes = R.drawable.ic_insert_photo
onClicked = { toast(title.toString()) }
}
Expand Down
2 changes: 1 addition & 1 deletion bottomsheet/src/main/res/layout/bottom_sheet_list_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
android:textAppearance="@{safeUnbox(model.textAppearanceRes)}"
bind:compatLeftDrawable="@{model.iconDrawable}"
bind:compatLeftDrawableRes="@{model.iconRes}"
bind:compatLeftDrawableResTintColor="@{model.iconResTintColor}"
bind:compatLeftDrawableResTintColor="@{model.tintColorRes}"
tools:text="Clickable item"
/>

Expand Down

0 comments on commit 96b2a7b

Please sign in to comment.