Flutter

Flutter ScrollView(滚动视图)

2018-12-12  本文已影响1086人  iwakevin

ScrollView 是一个带有滚动的视图组件。

ScrollView 由三部分组成:

ScrollView 有以下常用属性:

注:ScrollView 是一个抽象类,通常使用 CustomScrollView。

new CustomScrollView(
    shrinkWrap: true,
    // 内容
    slivers: <Widget>[
        new SliverPadding(
            padding: const EdgeInsets.all(20.0),
            sliver: new SliverList(
                delegate: new SliverChildListDelegate(
                    <Widget>[
                        const Text('A'),
                        const Text('B'),
                        const Text('C'),
                        const Text('D'),
                    ],
                ),
            ),
        ),
    ],
)

SliverAppBar

SliverAppBar 可以实现背景,标题,顶部导航栏联动,渐隐渐出动画。

上一篇 下一篇

猜你喜欢

热点阅读