构建如下所示的“嵌套底页”的最佳方法是什么: https://dribbble.com/shots/14139422-Mobile-banking-app-interactions?
我是否必须使用NestedScrollView
或CustomScrollView
或完全不同的方法?
更新:
这是我使用SlidingUpPanel
的结果,但是我仍然有两个问题:
代码:
SafeArea(
child: Scaffold(
body: SlidingUpPanel(
minHeight: MediaQuery.of(context).size.height - 479,
maxHeight: MediaQuery.of(context).size.height - 79,
panel: SingleChildScrollView(
child: Column(
children: [Text('Sliding Panel')],
),
),
body: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Container(
height: 100,
color: Colors.green,
),
Container(
height: 300,
color: Colors.red,
)
],
),
),
),
),
);
结果:
答案 0 :(得分:0)