Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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))
              )
            ),
 
PREVIOUS NEXT
Tagged: #Round #button #text #icon #flutter
ADD COMMENT
Topic
Name
1+6 =