Created
October 16, 2019 02:07
-
-
Save trunghq3101/ed4d136243a677e81bf7f6a68799fdf5 to your computer and use it in GitHub Desktop.
Custom drawer arrow style (Up arrow)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
| <!-- Customize your theme here. --> | |
| <item name="colorPrimary">@color/colorPrimary</item> | |
| <item name="colorPrimaryDark">@color/colorPrimaryDark</item> | |
| <item name="colorAccent">@color/colorAccent</item> | |
| <item name="drawerArrowStyle">@style/AppTheme.DrawerArrowStyle</item> | |
| <item name="android:textSize">14sp</item> | |
| </style> | |
| <style name="AppTheme.DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle"> | |
| <item name="color">@color/colorPrimary</item> | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment