使用堆栈()
Widget build(BuildContext context) {
return Stack(
children: [
Container(), //Your Container to pin on top
PageView(
children: [
//Your scrollable widget
],
)
]
);
}