0

enter image description here

please how can i use flat button now?

I am trying to solve this and expected that someone will help me here.

  • FlatButton is removed by flutter now you need to use TextButton. https://stackoverflow.com/questions/66805535/flutter-flatbutton-is-deprecated-alternative-solution-with-width-and-height – Rohan Jariwala May 02 '23 at 12:44
  • Does this answer your question? [Flutter FlatButton is deprecated - alternative solution with width and height](https://stackoverflow.com/questions/66805535/flutter-flatbutton-is-deprecated-alternative-solution-with-width-and-height) – Rohan Jariwala May 02 '23 at 12:46
  • Share you code where you use faltbutton – Mobin Ansar May 02 '23 at 12:56
  • FlatButton is deprecated(was in previous version of flutter), so now you can use ElevatedButton or FilledButton for same functionality as FlatButton – Hitarth Chhunchha May 02 '23 at 13:19
  • ok thanks to all of you – crossword Joker May 02 '23 at 15:07

1 Answers1

0

You just need to Replace FlatButton to RaisedButton

Mobin Ansar
  • 631
  • 2
  • 13