Commit 59341041 authored by 杜欣's avatar 杜欣

二级方案

parent 3235a999
...@@ -84,7 +84,7 @@ class _LevelTwoPageState extends BaseState<LevelTwoPage> ...@@ -84,7 +84,7 @@ class _LevelTwoPageState extends BaseState<LevelTwoPage>
SliverFillRemaining( SliverFillRemaining(
child: TabBarView( child: TabBarView(
controller: this.tabController, controller: this.tabController,
children: <Widget>[Container(), Container()])) children: <Widget>[pages(), pages()]))
]), ]),
Positioned(left: 0, right: 0, bottom: 0, child: bottomWidget()) Positioned(left: 0, right: 0, bottom: 0, child: bottomWidget())
], ],
...@@ -318,7 +318,7 @@ class _LevelTwoPageState extends BaseState<LevelTwoPage> ...@@ -318,7 +318,7 @@ class _LevelTwoPageState extends BaseState<LevelTwoPage>
child: ListView.builder( child: ListView.builder(
physics: NeverScrollableScrollPhysics(), physics: NeverScrollableScrollPhysics(),
itemBuilder: (c, index) { itemBuilder: (c, index) {
return DoctorItem(c, []); return Text('$index');
}, },
itemCount: 5, itemCount: 5,
)); ));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment