如何设置启动屏幕图标的大小?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置启动屏幕图标的大小?相关的知识,希望对你有一定的参考价值。
我正在尝试设置一个启动屏幕,该屏幕将无缝地飘入个人闪屏。
[目标是我拥有徽标,并以“启动”和“飞溅”为中心,也就是说,仅纵向应用程序的左右两边分别为10px。
我不知道要在android上正确设置此图像的大小。我有大小可变的drawable-****文件夹,但它们不合适。除了将图像“居中”在Android xml中之外,我基本上不知道如何使它“适合宽度”。
[在ios上,我的图标显示在LaunchScreen.storyboard的中央,但非常小(96x96)。如果我手动调整图像大小以适应所需的方式(在Xcode视图场景中),则在运行应用程序时,我会收到一条警告,指出该视图没有解锁限制,并且将显示为原始的小尺寸。
答案
启动屏幕图标使用适合功能
例如
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Image.asset('repo/intro.jpg' width: 100 , height: 100, fit: BoxFit.fill,),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
https://api.flutter.dev/flutter/painting/BoxFit-class.html
苹果发布情节提要也适合使用
以上是关于如何设置启动屏幕图标的大小?的主要内容,如果未能解决你的问题,请参考以下文章