Home > Mobile >  How to use a FilledButton in flutter (Material 3)
How to use a FilledButton in flutter (Material 3)

Time:12-23

enter image description here

link1 (Screenshot) : enter image description here

CodePudding user response:

there isn't any filled button in flutter you can use ElevatedButton to get like this button

 ElevatedButton(onPressed: () {}, child: Text("Elevated Button")),
  • Related