📜  列颤动内的单个子滚动视图 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:54.939000             🧑  作者: Mango

代码示例1
Widget build(BuildContext context) =>
Scaffold(
  body: Column(
    children: [
      Container(
        height: 100.0,
        color: Colors.blue,
      ),
      Expanded(
        child: SingleChildScrollView(
          child: Container(
            color: Colors.red,
            padding: EdgeInsets.all(20.0),
            child: Column(
              children: [
                Text('Red container should be scrollable'),
                Container(
                  width: double.infinity,
                  height: 700.0,
                  padding: EdgeInsets.all(10.0),
                  color: Colors.white.withOpacity(0.7),
                  child: Text('I will have a column here'),
                )
              ],
            ),
          ),
        ),
      ),
    ],
  ),
);