2020-12-30

1.....Container背景色渐变
Container(
child: Text('下一页'),
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
Colors.pinkAccent,
Colors.white,
],
),
),
);
2..flutter 背景图片
Container(
decoration: BoxDecoration(
color: Colors.green,
image: DecorationImage(
image: AssetImage('images/exam/顺序练习bj.png'),
fit: BoxFit.fill,
),
),
);
3.....flutter Column 和 ListView,GridView 嵌套问题
ListView.builder(
//解决无限高度问题
shrinkWrap: true,
//禁用滑动事件
physics: NeverScrollableScrollPhysics(),
);
在Column中,再多使用Expanded包裹可滚动Widget,即可正常显示。

你可能感兴趣的:(2020-12-30)