Example 1: elevated button flutter color ElevatedButton ( style: ButtonStyle ( backgroundColor: MaterialStateProperty .resolveWith <Color > ( ( Set<MaterialState > states ) { if ( states. contains ( MaterialState.pressed ) ) return Colors. green ; return null ; // Use the component's default. } , ) , ) , ) Example 2: raised button background color doesn't changeflutter RaisedButton ( onPressed : null , child : Text ( 'Get in' ) , // change it to sign-in color : Colors. blue , disabledColor : Colors. blue , //add this to your code ) Example 3: elevated Button Theme background color in flutter style : ElevatedButton. styleFrom ( primary : Colors. purple , ) , Example 4: Flutter Elevated button color ElevatedButton ( child: Text ( 'Button' ) , onPressed: ( ) { } ,