gpt4 book ai didi

android - 为什么我的 Flutter 应用的 ListView 滚动不如 Flutter Gallery 应用流畅?

转载 作者:IT老高 更新时间:2023-10-28 12:36:21 25 4
gpt4 key购买 nike

我使用 Flutter 创建了我的滚动演示应用的发布版本。我想知道为什么我的应用程序的 ListView 滚动不如 flutter 画廊应用程序流畅。我使用 LG G5 进行此测试。

这里是 a link to my app's demo

编辑:这是代码。

class ListViewSample extends StatelessWidget {
@override
Widget build(BuildContext buidContext) {
return new Container(
child: new Center(
child: new ListView(
children: createListTiles(),
),
)
);
}

List<Widget> createListTiles() {
List<Widget> tiles = <Widget>[];
for(int i = 0; i < 40; i++) {
int count = i + 1;
tiles.add(
new ListTile(
leading: new CircleAvatar(
child: new Text("$count"),
backgroundColor: Colors.lightGreen[700],
),
title: new Text("Title number $count"),
subtitle: new Text("This is the subtitle number $count"),
)
);
}
return tiles;
}

有人也有同样的经历吗?

谢谢!

最佳答案

Flutter 在“Debug”构建时并不那么流畅,在“Release”构建时运行得更流畅(从命令行运行“flutter run --release”)。当然,Iiro Krankka 的回答也会提升榜单的表现。

关于android - 为什么我的 Flutter 应用的 ListView 滚动不如 Flutter Gallery 应用流畅?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46761036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com