Flutter 渐变
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 渐变相关的知识,希望对你有一定的参考价值。
child: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [Color(0xffff3737), Color(0xffff450d)],
),
),
),
begin 和end 可以确定角度
colors 可以添加颜色
以上是关于Flutter 渐变的主要内容,如果未能解决你的问题,请参考以下文章