diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-03 15:38:57 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-03 15:51:48 +0530 |
commit | 32d941d3522792e115743c9806339b60bc961c61 (patch) | |
tree | 68e5ff907e6854013d62915493712e0c92e4851a /app | |
parent | 96170019fe7059a9dabf31daa9dd02552c6b6690 (diff) |
app: fix hard-coded themes in BasicBottomSheet
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/basic_bottom_sheet.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/basic_bottom_sheet.xml b/app/src/main/res/layout/basic_bottom_sheet.xml index 98815a43..372cf185 100644 --- a/app/src/main/res/layout/basic_bottom_sheet.xml +++ b/app/src/main/res/layout/basic_bottom_sheet.xml @@ -12,7 +12,7 @@ <com.google.android.material.textview.MaterialTextView android:id="@+id/bottom_sheet_title" - style="@style/TextAppearance.MaterialComponents.Headline6" + style="?attr/textAppearanceTitleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="8dp" @@ -24,7 +24,7 @@ <com.google.android.material.textview.MaterialTextView android:id="@+id/bottom_sheet_message" - style="@style/TextAppearance.MaterialComponents.Body1" + style="?attr/textAppearanceBodyLarge" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginStart="8dp" @@ -35,7 +35,7 @@ <com.google.android.material.button.MaterialButton android:id="@+id/bottom_sheet_cancel_button" - style="@style/AppTheme.OutlinedButton" + style="?attr/materialButtonOutlinedStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="24dp" @@ -48,7 +48,7 @@ <com.google.android.material.button.MaterialButton android:id="@+id/bottom_sheet_ok_button" - style="@style/AppTheme.OutlinedButton" + style="?attr/materialButtonOutlinedStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="24dp" |