Answers for "text button radius flutter"

1

textfield border radius flutter

TextFormField(
  decoration: InputDecoration(
    border: OutlineInputBorder(
      borderRadius: BorderRadius.circular(8),
    ),
  ),
),
Posted by: Guest on May-29-2021
1

Round button with text and icon in flutter

OutlinedButton.icon(
              icon: Icon(Icons.home),
              onPressed: (){}, 
              label: Text('OutlinedButton'),
              style: OutlinedButton.styleFrom(
                shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0))
              )
            ),
Posted by: Guest on August-24-2021

Code answers related to "text button radius flutter"

Browse Popular Code Answers by Language