For questions relating to the PageView class in Flutter. When using this tag also include the more generic [flutter] tag. If your question applies to Flutter more generally, use the [flutter] tag only.
Questions tagged [flutter-pageview]
277 questions
2
votes
0 answers
How to make the next page clickable during a transition with PageView on Flutter?
I'm using a PageView to create sliding transitions between multiple pages containing a basic RaisedButton.
However, the button is not clickable during the transition. Instead, when the screen is taped, it cancels or terminates the transition, but a…

Delgan
- 18,571
- 11
- 90
- 141
2
votes
0 answers
Flutter PageView inside SingleChildScrollView block vertical scroll
I have a horizontal scrolling PageView inside vertical scrolling SingleChildScrollView
Expanded(
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
children:…

WorieN
- 1,276
- 1
- 11
- 30
2
votes
1 answer
Problem pageview reload first page after setState ( Flutter )
I have a code, this code create a pageview about some user, data is get from firebase
return new Scaffold(
appBar: new AppBar(
title: new Text("Carousel"),
),
body: StreamBuilder(
stream:…

TRÍ NGUYỄN MINH
- 37
- 3
2
votes
2 answers
How to create infinity PageView in Flutter
How to create an PageView which are supported circle scroll in Flutter? That's mean when I stand on 0 page, I could scroll to left to the last page.
Updated: I answered this question and update a gist source also.

Trần Đức Tâm
- 4,037
- 3
- 30
- 58
2
votes
1 answer
Flutter PageView, can i animate removing items from list?
I'm pretty new to flutter and i'm trying to do some animation on a PageView. to be precise, I want to animate removing an item.
I've tried serveral ways to animate it and apart from a solution, the way how you guys would solve such a problem would…

Gijs Beijer
- 560
- 5
- 19
1
vote
0 answers
I am having troubles with pageview and stateful widget FLUTTER
Usually when I work with listview on stateless widgets this is how I do it
I have a model class for data handling
class CategoriesModel {
String? categoryId;
String? categoryNameEn;
String? categoryNameAr;
String? categoryIcon;
String?…

Toxicless
- 23
- 4
1
vote
2 answers
How can i recognize two fingers on the screen in flutter?
I want to make swipable image viewer and have InteractiveViewer inside PageView.builder.
class PageViewImageSwiper extends StatelessWidget {
final List images;
const PageViewImageSwiper({required this.images, super.key});
…

LoToSS
- 11
- 2
1
vote
1 answer
Once video paly the second will be pause automatically
file1 : pageViewWidg.dart
class PageViewWidg extends StatefulWidget {
final String videoUrl;
final String videoUrl2;
final String avatarImg;
PageViewWidg({
super.key,
required this.videoUrl,
required this.avatarImg,
required…

oussama
- 59
- 1
- 7
1
vote
2 answers
How to navigate pageview pages with overwrite back button in AppBar?
I have a pageview view and it works with sliding. But how do I integrate this back button as leading: Icon(backbutton), when navigating between forms in the pageview? Thanks
screen1.dart
import…
user18315843
1
vote
1 answer
Can Flutter's PageView widget be implemented for a just selected section of the screen instead of the entire screen?
Would it be possible to use the PageView widget just for the contents within Expanded widget in the code below? Essentially trying to swipe right for the items only within the Expanded widget instead of the entire screen.
class _MyHomeScreenState…

YSC
- 29
- 6
1
vote
1 answer
RenderFlex children have non-zero flex but incoming height constraints are unbounded. How can I get rid of this error
In my project I used a scaffold in a stateful widget. In the middle of the column of the stateful widget I want to include a pageview that swipes. In that page view, there are various text fields. I wrote the code for the form in a different file in…

Iniisking
- 45
- 6
1
vote
1 answer
How to animate PageView normal from last page to first one
I have a PageView to navigate between images that I would like to behave as an infinite loop or as a ring array, that is to say, be able to navigate from the last page to the first one without passing through the ones in the…

JAgüero
- 403
- 1
- 4
- 14
1
vote
1 answer
How to make simple carousel only use PageView flutter?
How to make a simple carousel only using PageView flutter? because I need to know how to make a carousel using PageController.animeToPage on flutter, this is available documentation https://docs.flutter.dev/cookbook/animation/page-route-animation

Abdullah Harits
- 11
- 2
1
vote
2 answers
how to go back to previous page when refresh the screen in pageview flutter
I want to keep the current page, when i refersh the screen or navigating back in page view
here is the code , actually i want display the particular index screen programmatically with out clicking the button. Some times iam getting…

gopinath
- 89
- 1
- 9
1
vote
1 answer
Getting Data from multiple pageviews outside pageview using flutter and saving to firebase
I am new to flutter dart, I have pageview on one of my screen ProfilePage.dart having 3 pageveiws inside of it. There are 2 buttons on the page outside the page view NEXT and BACK and when the user gets to last page the next button changes to…

Zero001
- 31
- 9