我有一个Divider小部件带有纯色,但我想将其设置为渐变色。有办法吗?
Divider(
height: 20,
thickness: 2.5,
indent: 0,
endIndent: 100,
)
答案 0 :(得分:1)
只需将Container()
与BoxDecoration一起使用即可创建渐变。
SizedBox(
width: 200,
height: 4
child: Container(
decoration: BoxDecoration(
gradient: //...
),
),
),
在进行定制时,预定义的分隔符很好,但功能不强大。