stepBowRadial constant
RadialSteps
const stepBowRadial
A RadialSteps
that progresses through the rainbow.
To create a new RadialSteps
that has these colors,
consider Foils.stepBowRadial.copyWith(...)
providing desired radius
, center
, or focal
, etc.
Implementation
static const stepBowRadial = RadialSteps(
tileMode: TileMode.repeated,
radius: 0.5,
colors: [
Colors.pink,
Colors.purple,
Colors.indigo,
Colors.blue,
Colors.green,
Colors.yellow,
Colors.orange,
Colors.red,
],
);