flutter app的logo和splash logo尺寸

库:

bash 复制代码
  flutter_launcher_icons: ^0.14.4
  flutter_native_splash: ^2.4.8

设置:

bash 复制代码
flutter_launcher_icons:
  # 需要执行flutter pub run flutter_launcher_icons:main来生成图标

  android: "launcher_icon"
  ios: true
  image_path: "assets/images/logo.png"

  min_sdk_android: 21 # android min sdk min:16, default 21
  web:
    generate: true
    image_path: "assets/images/logo.png"
    background_color: "#hexcode"
    theme_color: "#hexcode"
  windows:
    generate: true
    image_path: "assets/images/logo.png"
    icon_size: 48 # min:48, max:256, default: 48
  macos:
    generate: true
    image_path: "assets/images/logo.png"


# dart run flutter_native_splash:create
flutter_native_splash:
  color: "#000000"
  color_ios: "#000000"
  image: assets/images/splash_logo.png
  branding: assets/images/splash_brand.png
  branding_mode: bottom
  android_12:
    color: "#000000"
    icon_background_color: "#000000"
    image: assets/images/splash_logo.png
    branding: assets/images/splash_brand.png

图片:

logo尺寸1024*1024

splash logo 1152*1152(内部带圆角的icon 90*90,框框180*180,占1/2)

splash brand 800*320

效果:

相关推荐
程序员老刘10 小时前
Dart Skills CLI 1.0发布,老刘年初的预言兑现了
flutter·ai编程·dart
天空之城--15 小时前
Flutter UI 绘制原理浅析
flutter
yume_sibai19 小时前
01-Flutter入门指南
flutter
lqj_本人1 天前
Flutter 三方库「flutter_ble_peripheral」的鸿蒙化适配指南
flutter·华为·harmonyos
lqj_本人1 天前
Flutter 三方库「flutter-dualscreen」的鸿蒙化适配指南
flutter·华为·harmonyos
●VON1 天前
鸿蒙跨平台框架怎么选?从真实需求比较 Flutter、React Native、KMP/CMP 与 Web 路线
flutter·react native·harmonyos
lqj_本人1 天前
Flutter 三方库「flutter_displaymode」的鸿蒙化适配指南
flutter·华为·harmonyos
lqj_本人2 天前
Flutter 三方库「drag_and_drop_flutter」的鸿蒙化适配指南
flutter·华为·harmonyos
天空之城--2 天前
Flutter 三棵树:原理、机制与最佳实践
flutter
天空之城--2 天前
Flutter线程模型完全指南:从架构到实战
flutter·架构