Write the Code. Change the World.

1月 10

写 flutter 越多,遇到的场景和用到组件就越多。这样,就有机会采坑。遇到的情况先记录下。

记录坑

Scaffold(
        appBar: PreferredSize(
          preferredSize: Size.fromHeight(1),
          child: Container(
            color: Colors.white,
          ),
        ),
        body: webView()
      )

记录细节

  • List 循环索引
List list = ['huo', 'are', 'you'];
list.asMap().forEach((index, item) => {

});

学习链接

http://laomengit.com/flutter/widgets/PreferredSize.html