mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* chore(apps): add modal-navigation-app for ui testing * test(e2e): add modal-navigation app * test(apps): remove modal-navigation-app The app has been moved to `e2e/modal-navigation`. * chore: include e2e folder to npm scripts * docs: include e2e folder to DevelopmentWorkflow.md * chore(e2e): update .gitignore * fix(e2e): relative paths * chore(e2e): update package.json * test(e2e): add change root view to modal-navigation * test(e2e): set androidTabsPosition to botton * chore(e2e): add VSCode launch.json config * docs(e2e): delete LICENSE and README.md files * refactor(e2e): rename modal-tab-page to modal-tab-root * test(e2e): update iOS launch screen
46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- theme to use FOR launch screen-->
|
|
<style name="LaunchScreenThemeBase" parent="Theme.AppCompat.Light.NoActionBar">
|
|
<item name="toolbarStyle">@style/NativeScriptToolbarStyle</item>
|
|
|
|
<item name="colorPrimary">@color/ns_primary</item>
|
|
<item name="colorPrimaryDark">@color/ns_primaryDark</item>
|
|
<item name="colorAccent">@color/ns_accent</item>
|
|
|
|
<item name="android:windowBackground">@drawable/splash_screen</item>
|
|
|
|
<item name="android:windowActionBarOverlay">true</item>
|
|
<item name="android:windowTranslucentStatus">true</item>
|
|
|
|
</style>
|
|
|
|
<style name="LaunchScreenTheme" parent="LaunchScreenThemeBase">
|
|
</style>
|
|
|
|
<!-- theme to use AFTER launch screen is loaded-->
|
|
<style name="AppThemeBase" parent="Theme.AppCompat.Light.NoActionBar">
|
|
<item name="toolbarStyle">@style/NativeScriptToolbarStyle</item>
|
|
|
|
<item name="colorPrimary">@color/ns_primary</item>
|
|
<item name="colorPrimaryDark">@color/ns_primaryDark</item>
|
|
<item name="colorAccent">@color/ns_accent</item>
|
|
|
|
</style>
|
|
|
|
<style name="AppTheme" parent="AppThemeBase">
|
|
</style>
|
|
|
|
<!-- theme for action-bar -->
|
|
<style name="NativeScriptToolbarStyleBase" parent="Widget.AppCompat.Toolbar">
|
|
<item name="android:background">@color/ns_primary</item>
|
|
<item name="theme">@style/ThemeOverlay.AppCompat.ActionBar</item>
|
|
<item name="popupTheme">@style/ThemeOverlay.AppCompat</item>
|
|
|
|
</style>
|
|
|
|
<style name="NativeScriptToolbarStyle" parent="NativeScriptToolbarStyleBase">
|
|
</style>
|
|
</resources>
|