app: fix hard-coded themes in BasicBottomSheet

This commit is contained in:
Harsh Shandilya 2021-11-03 15:38:57 +05:30
parent 96170019fe
commit 32d941d352
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -12,7 +12,7 @@
<com.google.android.material.textview.MaterialTextView <com.google.android.material.textview.MaterialTextView
android:id="@+id/bottom_sheet_title" android:id="@+id/bottom_sheet_title"
style="@style/TextAppearance.MaterialComponents.Headline6" style="?attr/textAppearanceTitleLarge"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="8dp" android:layout_marginStart="8dp"
@ -24,7 +24,7 @@
<com.google.android.material.textview.MaterialTextView <com.google.android.material.textview.MaterialTextView
android:id="@+id/bottom_sheet_message" android:id="@+id/bottom_sheet_message"
style="@style/TextAppearance.MaterialComponents.Body1" style="?attr/textAppearanceBodyLarge"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="8dp" android:layout_marginStart="8dp"
@ -35,7 +35,7 @@
<com.google.android.material.button.MaterialButton <com.google.android.material.button.MaterialButton
android:id="@+id/bottom_sheet_cancel_button" android:id="@+id/bottom_sheet_cancel_button"
style="@style/AppTheme.OutlinedButton" style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="24dp" android:layout_marginTop="24dp"
@ -48,7 +48,7 @@
<com.google.android.material.button.MaterialButton <com.google.android.material.button.MaterialButton
android:id="@+id/bottom_sheet_ok_button" android:id="@+id/bottom_sheet_ok_button"
style="@style/AppTheme.OutlinedButton" style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="24dp" android:layout_marginTop="24dp"