答案 0 :(得分:2)
尝试一下:
Container(
height: 100,
decoration: BoxDecoration(
gradient: LinearGradient(
colors: [
Colors.black,
Colors.purple,
Colors.blue,
Colors.green,
Colors.brown,
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
stops: [0.01, 0.3, 0.4, 0.8, 1],
),
),
)
您已经有颜色,您必须创建stops
,在我的示例中这是不言自明的,并且长度必须与颜色相等。
如果要使其水平,请调整begin
和end
参数。