class Home extends StatelessWidget{
@override
Widget build(BuildContext context){
return new MediaQuery(
data: new MediaQueryData.fromWindow(ui.window),
child: new SafeArea(
child: new Material(
child: new CustomScrollView(
slivers: <Widget>[
new SliverPersistentHeader(
delegate: MyCustomAppBar(expandedHeight: 200),
pinned: true,
),
new SliverList(
delegate: SliverChildBuilderDelegate(
(_,index) => ListTile(
title: Text(
"Index: $index",
textDirection: TextDirection.ltr,
),
),
),
),
],
),
),
),
);
}
}
我正在创建一个自定义滚动视图,但是出现错误,我不知道它是从哪里生成的?
我正在使用 SliverPersistentHeaderDelegate 类创建我的自定义appBar。