Flutter教学

Flutter(55):Layout组件之Offstage

2020-10-18  本文已影响0人  starryxp

Flutter教学目录持续更新中

Github源代码持续更新中

1.Offstage介绍

一个布局widget,可以控制其子widget的显示和隐藏。

2.Offstage属性

3.使用

image.png
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Offstage'),
      ),
      body: Column(
        children: [
          Container(
            width: 200,
            height: 200,
            color: Colors.amber,
            child: Offstage(
              offstage: true,
              child: Image.asset('images/scan.png'),
            ),
          ),
          Container(
            margin: EdgeInsets.only(top: 10),
            width: 200,
            height: 200,
            color: Colors.amber,
            child: Offstage(
              offstage: false,
              child: Image.asset('images/scan.png'),
            ),
          ),
        ],
      ),
    );
  }

下一节:Layout组件之OverflowBox

Flutter(56):Layout组件之OverflowBox

Flutter教学目录持续更新中

Github源代码持续更新中

上一篇下一篇

猜你喜欢

热点阅读