DEV Community

Saina
Saina

Posted on

Switch colors in Flutter

The colours in switch, boring to manually test so here it is

  Switch(
                activeColor: Colors.red, // Red when active
                inactiveThumbColor: Colors.blue, // Blue when inactive
                activeTrackColor: Colors.green, // Green track when active
                inactiveTrackColor: Colors.orange, // Orange track when inactive
                value: switchValue,
                onChanged: onChanged,
              ),
Enter fullscreen mode Exit fullscreen mode

Image description

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay