mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
23 lines
934 B
XML
23 lines
934 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<resources>
|
|
<style name="AppTheme" parent="Theme.MaterialComponents.Light">
|
|
|
|
<!-- This removes the ActionBar -->
|
|
<item name="windowActionBar">false</item>
|
|
<item name="android:windowActionBar">false</item>
|
|
<item name="windowNoTitle">true</item>
|
|
<item name="android:windowNoTitle">true</item>
|
|
|
|
<!-- uno_splash_color and uno_splash_image are generated by Uno.Resizetizer -->
|
|
<!-- This property is used for the splash screen -->
|
|
<item name="android:windowSplashScreenBackground">@color/uno_splash_color</item>
|
|
<item name="android:windowBackground">@drawable/uno_splash_image</item>
|
|
<item name="android:windowSplashScreenAnimatedIcon">@drawable/uno_splash_image</item>
|
|
</style>
|
|
<style name="Theme.AppCompat.Translucent">
|
|
<item name="android:windowIsTranslucent">true</item>
|
|
<item name="android:windowAnimationStyle">@android:style/Animation</item>
|
|
</style>
|
|
|
|
</resources>
|