dart 抖动(翻页视图):如何使用flip_board软件包创建中翻页视图?

k10s72fa  于 2023-09-28  发布在  其他
关注(0)|答案(1)|浏览(86)

我想创建中翻页视图。我使用“flip_board”包来创建,但不知道如何管理它。

kh212irz

kh212irz1#

经过几个小时的牺牲,我发现这个应用程序的代码有**“中翻页视图”**
只需提取“FlipPanel”小部件并将其添加到您的项目中,然后按以下方式应用:

FlipPanel<Blog>(
    itemStream: Stream.fromIterable([------List-------]),
    height: size(context).height,
    itemBuilder: <Blog>(context, blog, p2, p3) {
      return Container(
        width: MediaQuery.of(context).size.width,
        height: MediaQuery.of(context).size.height,
        child : Text("data")
      );
    });

参考:https://github.com/jmolins/flutboard

相关问题