Last active
August 2, 2019 13:00
-
-
Save kimuradev/56ff29cac8dbced64e7bb7e6511c87fd to your computer and use it in GitHub Desktop.
PWA Medium - styles
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
<resources> | |
<!-- Theme to create a blank screen while the TWA is opening --> | |
<style name="Theme.LauncherActivity" parent="Theme.AppCompat.NoActionBar"> | |
<item name="android:windowAnimationStyle">@null</item> | |
<item name="android:windowIsTranslucent">true</item> | |
<item name="android:windowNoTitle">true</item> | |
<item name="android:windowBackground">@android:color/transparent</item> | |
<item name="android:backgroundDimEnabled">false</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment