I want to make an e-book with scrolling screens that are images with Flutter
Asked
Active
Viewed 229 times
1
-
2You need to post the tried code. – Prashant Pimpale Jun 30 '19 at 05:33
-
I am asking for code how should I try something I don't know ?? – Abdelrahman M. Elmarakby Jul 01 '19 at 00:51
1 Answers
1
You should use PageView. Using page view you can either scroll page horizontally or vertically.
PageView.builder(
itemBuilder: (context, position) {
return _buildPage();
},
itemCount: listItemCount,
scrollDirection: Axis.vertical,
)

nick.tdr
- 4,627
- 4
- 28
- 41