16 changed files with 188 additions and 142 deletions
Split View
Diff Options
-
BIN.DS_Store
-
BINandroid/app/src/main/res/drawable-v21/background.png
-
5android/app/src/main/res/drawable-v21/launch_background.xml
-
BINandroid/app/src/main/res/drawable/background.png
-
5android/app/src/main/res/drawable/launch_background.xml
-
19android/app/src/main/res/values-night-v31/styles.xml
-
6android/app/src/main/res/values-night/styles.xml
-
19android/app/src/main/res/values-v31/styles.xml
-
6android/app/src/main/res/values/styles.xml
-
BINassets/.DS_Store
-
BINassets/images/splash.png
-
BINios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png
-
2ios/Runner/Info.plist
-
2lib/pages/home/real_home_page.dart
-
264lib/pages/mine/phone_login_page.dart
-
2lib/pages/mine/real_login_page.dart
@ -1,7 +1,6 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> |
|||
<item android:drawable="@android:color/white" /> |
|||
<item> |
|||
<bitmap android:gravity="fill" android:src="@drawable/splash"/> |
|||
<bitmap android:gravity="fill" android:src="@drawable/background"/> |
|||
</item> |
|||
</layer-list> |
|||
</layer-list> |
|||
@ -1,7 +1,6 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> |
|||
<item android:drawable="@android:color/white" /> |
|||
<item> |
|||
<bitmap android:gravity="fill" android:src="@drawable/splash"/> |
|||
<bitmap android:gravity="fill" android:src="@drawable/background"/> |
|||
</item> |
|||
</layer-list> |
|||
</layer-list> |
|||
@ -0,0 +1,19 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<resources> |
|||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on --> |
|||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar"> |
|||
<item name="android:forceDarkAllowed">false</item> |
|||
<item name="android:windowFullscreen">false</item> |
|||
<item name="android:windowDrawsSystemBarBackgrounds">false</item> |
|||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> |
|||
</style> |
|||
<!-- Theme applied to the Android Window as soon as the process has started. |
|||
This theme determines the color of the Android Window while your |
|||
Flutter UI initializes, as well as behind your Flutter UI while its |
|||
running. |
|||
|
|||
This Theme is only used starting with V2 of Flutter's Android embedding. --> |
|||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar"> |
|||
<item name="android:windowBackground">?android:colorBackground</item> |
|||
</style> |
|||
</resources> |
|||
@ -0,0 +1,19 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<resources> |
|||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off --> |
|||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar"> |
|||
<item name="android:forceDarkAllowed">false</item> |
|||
<item name="android:windowFullscreen">false</item> |
|||
<item name="android:windowDrawsSystemBarBackgrounds">false</item> |
|||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> |
|||
</style> |
|||
<!-- Theme applied to the Android Window as soon as the process has started. |
|||
This theme determines the color of the Android Window while your |
|||
Flutter UI initializes, as well as behind your Flutter UI while its |
|||
running. |
|||
|
|||
This Theme is only used starting with V2 of Flutter's Android embedding. --> |
|||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar"> |
|||
<item name="android:windowBackground">?android:colorBackground</item> |
|||
</style> |
|||
</resources> |
|||
Write
Preview
Loading…
Cancel
Save