Answers for "flutter style textbutton widget"

0

how to style a text button in flutter

TextButton(
    child: Text('Text'),
    style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.red)),
    onPressed: () {
         // action on pressed
    },
),
Posted by: Guest on October-11-2021
-2

textbutton style flutter

TextButton
Posted by: Guest on October-29-2021

Code answers related to "flutter style textbutton widget"

Browse Popular Code Answers by Language