Skip to content

Commit

Permalink
feat(android): use material theme
Browse files Browse the repository at this point in the history
  • Loading branch information
jquick-axway authored and sgtcoolguy committed Sep 28, 2020
1 parent 29919d3 commit 1c71be8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/platform/android/res/values/custom_theme.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="kitchensink" parent="@style/Theme.AppCompat.Light">
<style name="kitchensink" parent="@style/Theme.MaterialComponents.Light.Bridge">
<item name="colorPrimary">#c91326</item>
<item name="colorAccent">#000000</item>
<item name="android:textColorPrimary">#000000</item>
Expand Down
4 changes: 2 additions & 2 deletions app/widgets/ti.androidfingerprintalertdialog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ Example with a theme called `my_custom_theme` which you might have setup within
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="my_custom_theme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<style name="my_custom_theme" parent="@style/Theme.MaterialComponents.Light.DarkActionBar.Bridge">
...
<item name="android:timePickerDialogTheme">@style/AlertDialogCustom</item>
<item name="android:datePickerDialogTheme">@style/AlertDialogCustom</item>
<item name="alertDialogTheme">@style/AlertDialogCustom</item>
</style>
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<style name="AlertDialogCustom" parent="Theme.MaterialComponents.Light.Dialog.Alert">
<item name="colorAccent">#F26522</item>
<item name="colorControlActivated">#F26522</item>
<item name="android:textColor">#000000</item>
Expand Down

0 comments on commit 1c71be8

Please sign in to comment.