是否有更好的异步方式将数据按需加载到CupertinoPicker?
我基本上要做的是监听滚动事件,并检测CupertinoPicker是否滚动到起点之外,并在“数据”加载期间显示一个微调框。我将微调框插入到根据数据构建的小部件列表中,并在将新的小部件添加到列表中时将其删除。
我不能说是什么让我想知道是否有更好的方法,但是我认为应该有解决这个问题的更好的方法。
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
void main(){
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List<Widget> items = [Divider(color: Colors.red)];
bool refreshInProgress = false;
loadMoreData() {
if(refreshInProgress) return;
setState(() {
refreshInProgress = true;
});
items.insert(0, FutureBuilder(
future: Future.delayed(Duration(seconds: 2)).then((value) {
var newItems = [Text("A"), Text("B"), Text("C")];
setState((){
items = [...newItems, ...items.where((w) => !(w is FutureBuilder) || w == null)];
refreshInProgress = false;
});
return newItems;
}),
builder: (context, snapshot) {
if(snapshot.connectionState == ConnectionState.waiting) return Center(child: CircularProgressIndicator());
return null;
},
));
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(child: Container(
margin: EdgeInsets.all(20),
child: Column(children: [
Expanded(flex: 4, child: NotificationListener<ScrollNotification>(
onNotification: (ScrollNotification notification) {
if ((notification is ScrollEndNotification) && notification.metrics.pixels <= 0) {
loadMoreData();
return true;
}
return false;
},
child: CupertinoPicker.builder(
itemExtent: 32,
itemBuilder: (BuildContext context, int index) {
if(index >= 0 && index < items.length) return Center(child: items[index]);
return null;
},
onSelectedItemChanged: (int value) {
print("onSelectedItemChanged: $value");
},
))
),
Expanded(child: Container(child: Text("$items"))),
Row(children: [
RaisedButton(onPressed: () => setState(() => loadMoreData()), child: Text("Load more data")),
])
],
)),
)),
);
}
}