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

效果:

相关推荐
GitLqr14 小时前
深入理解 Flutter 架构:从 Widget 到 GPU 像素的全链路解析
flutter·面试·dart
SoaringHeart17 小时前
Flutter进阶|最佳实践:组件内阴影实现
前端·flutter
玛艾露贝19 小时前
Supabase云同步架构:Flutter应用的数据同步策略
flutter·架构
魔力女仆1 天前
Flutter 复杂拖拽排序实战:同源排序 + 跨容器拖拽完整落地
flutter
杉氧1 天前
状态管理大对决:在 Flutter 实战中如何优雅地管理共享状态?
android·前端·flutter
恋猫de小郭1 天前
Flutter Starling : 用 Swift和 Flutter 写了一个 Linux 桌面系统,震惊我一整年
android·前端·flutter
molihuan2 天前
最新 spine 4.3 flutter 适配鸿蒙
flutter·动画·harmonyos·鸿蒙·spine
GitLqr2 天前
StatefulWidget 里的隐形炸弹:为什么不要在 State 类中使用 context.mounted
flutter·面试·dart