dev/flutter

[Flutter] ElevatedButton 배경 색상 넣기

캄춰 2023. 12. 8. 14:44
728x90
반응형

backgroundColor: MaterialStateProperty.all(Colors.red),

 

      ElevatedButton(
        style: ButtonStyle(
          backgroundColor: MaterialStateProperty.all(Theme.of(context).customColor),
        ),
        onPressed: (){
          print('elevated button click');
        },

 

 

은근히 단순하지 않네..

728x90
반응형