📅  最后修改于: 2022-03-11 14:57:29.405000             🧑  作者: Mango
Column(
children: [
Expanded(
flex: 1,
child: PageView(children: [
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
]),