我使用Flutter創建了我的滾動演示應用程序的發佈版本。我不知道爲什麼我的應用程序的ListView滾動不如顫動畫廊應用程序光滑。我使用LG G5進行這項測試。爲什麼我的撲翼應用程序的listview滾動不如撲動畫廊應用程序光滑?
編輯: 這裏是代碼。
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;
}
有人也有同樣的感受嗎?
謝謝!
你是如何實現你的ListView的?你能分享一些代碼嗎? –