1.iOS设置
//1.名字
截屏2020-10-08 09.26.09.png
//2.icon
截屏2020-10-08 09.20.36.png
//3.启动图
截屏2020-10-08 09.20.55.png
2.android设置
//1.名字
截屏2020-10-08 09.28.04.png
截屏2020-10-08 09.28.28.png
//2.icon
截屏2020-10-08 09.29.04.png
drawable: 启动图的设置
mipmap-hdpi : @1.5x图片
mipmap-mdpi : @1x图片
mipmap-xhdpi: @2x图片
mipmap-xxhdpi: @3x图片
mipmap-xxxhdpi: @4x图片
values:
截屏2020-10-08 09.36.22.png
//3.启动图
截屏2020-11-03 08.39.04.png
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<item>
<bitmap
android:dither="true"
android:filter="true"
android:gravity="fill"
android:tileMode="disabled"
android:src="@mipmap/launch_background" />
</item>
</layer-list>
启动图尺寸:
drawable: 启动图的设置
mipmap-hdpi : @1.5x图片 480*800
mipmap-mdpi : @1x图片 320*480
mipmap-xhdpi: @2x图片 640*960
mipmap-xxhdpi: @3x图片 1236*2197
mipmap-xxxhdpi: @4x图片 1644*2922
values:
3.flutter资源文件 - images
截屏2020-10-08 09.47.53.png
网友评论