首页 > 解决方案 > 有没有更好的异步加载数据到 CupertinoPicker 的方法?

问题描述

有没有更好的异步按需加载数据到 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")),
            ])
          ],
        )),
      )),
    );
  }
}

https://dartpad.dev/b27137f4bff39281980f5957f5e140ad

标签: fluttercupertinopicker

解决方案


推荐阅读