Skip to content

Instantly share code, notes, and snippets.

View kimuradev's full-sized avatar

kimuradev kimuradev

View GitHub Profile
@kimuradev
kimuradev / styles.xml
Last active August 2, 2019 13:00
PWA Medium - styles
<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>