flutter Container背景色渐变
2020-11-04 本文已影响0人
司徒新新
Container背景色渐变
Container(
child: Text('下一页'),
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
Colors.pinkAccent,
Colors.white,
],
),
),
);