1

e-book

I want to make an e-book with scrolling screens that are images with Flutter

1 Answers1

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