启动页

image.png
不同尺寸的启动页图片splash.png,根据屏幕根据dpi,分别放置。其中3.0x的尺寸为1080x1920,2.0x为720x1280,1.0x为360x640

android/app/src/main/res/drawable/launch_background.xml文件内容中添加

  1. <item>
  2. <bitmap
  3. android:gravity="fill"
  4. android:mipMap="true"
  5. android:src="@mipmap/splash"/>
  6. </item>

其中上面的背景颜色,根据需要自行决定是否要注释掉。

  1. <item android:drawable="@android:color/white" />

图标

直接替换原来的flutter图标icon

app名称

android/app/src/main/AndroidManifest.xml文件中修改自己的名字
image.png