Answers for "pageview inside column flutter"

0

pageview inside column flutter

Column(
      children: <Widget>[
        Expanded(
          flex: 1,
          child: PageView(children: <Widget>[
            Text('Page 1'),
            Text('Page 2'),
            Text('Page 3'),
          ]),
        ),
        Expanded(child: Text("Test"), flex: 10), #<- add this if you don't want it to be at the bottom of the page
      ]),
Posted by: Guest on December-22-2020

Code answers related to "pageview inside column flutter"

Browse Popular Code Answers by Language