我想创建中翻页视图。我使用“flip_board”包来创建,但不知道如何管理它。
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
1条答案
按热度按时间kh212irz1#
经过几个小时的牺牲,我发现这个应用程序的代码有**“中翻页视图”**
只需提取“FlipPanel”小部件并将其添加到您的项目中,然后按以下方式应用:
参考:https://github.com/jmolins/flutboard