今年的自己打算开始learn如何从官方文档里学习,所以开始时会看的比较细,去找感觉,相信慢慢的就能做到放失有度了。
2018.11.2
今天学习了官方文档中Container.class的这一段代码,并把里面涉及的类,属性和方法全部查阅了一遍,很有收获,觉得学习就应该这样稳扎稳打。
Container.class
Container(
constraints: BoxConstraints.expand(
height: Theme.of(context).textTheme.display1.fontSize * 1.1 + 200.0,
),
padding: const EdgeInsets.all(8.0),
color: Colors.teal.shade700,
alignment: Alignment.center,
child: Text('Hello World', style: Theme.of(context).textTheme.display1.copyWith(color: Colors.white)),
foregroundDecoration: BoxDecoration(
image: DecorationImage(
image: NetworkImage('https://www.example.com/images/frame.png'),
centerSlice: Rect.fromLTRB(270.0, 180.0, 1360.0, 730.0),
),
),
transform: Matrix4.rotationZ(0.1),
)
下一次可以继续从Flutter Widget框架概述中第一个实例代码的container类开始学习。
网友评论