Last active
August 22, 2016 14:59
-
-
Save janishar/ad93da64ff1fbd004799964105d2352f to your computer and use it in GitHub Desktop.
This file contains 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"> | |
<item name="colorPrimary">@color/colorPrimary</item> | |
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> | |
<item name="colorAccent">@color/colorAccent</item> | |
<item name="android:windowContentOverlay">@null</item> | |
<item name="windowActionBar">false</item> | |
<item name="windowNoTitle">true</item> | |
<item name="drawerArrowStyle">@style/MaterialDrawer.DrawerArrowStyle</item> | |
</style> | |
<!--use item name="drawerArrowStyle" if you are using dark primaryColor in your app, else remove it--> | |
<style name="MaterialDrawer.DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle"> | |
<item name="spinBars">false</item> | |
<item name="color">@android:color/white</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment