Is there a way to change the raised button background color to a gradient? if not, how can I achieve something like this?
Gradient package is available at pub store which supports few predefined gradients
You can create the gradient button as
GradientButton(
child: Text('Gradient'),
callback: () {},
gradient: Gradients.backToFuture,
),
The package have GradientCard, GradientProgressIndicator, GradientButton, CircularGradientButton and the GradientText
Gradient Widgets