stepBowLinear constant
LinearSteps
const stepBowLinear
A LinearSteps
that progresses through the rainbow.
To create a new LinearSteps
that has these colors,
consider Foils.stepBowLinear.copyWith(...)
.
Implementation
static const stepBowLinear = LinearSteps(
tileMode: TileMode.repeated,
begin: Alignment.topLeft,
end: Alignment.centerLeft,
colors: [
Colors.red,
Colors.orange,
Colors.yellow,
Colors.green,
Colors.blue,
Colors.indigo,
Colors.purple,
Colors.pink,
],
);