use the shape in RaisedButton in Flutter
How to use the shape in RaisedButton in Flutter? If you want to get something fancier, it is highly recommended to use the Image for the background of RaisedButton , and then you can use an ExImage for the icon. raisedbutton shape flutter By RakshaD on Feb 08, 2021 shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(18.0), side: BorderSide(color: Theme.of(context).primaryColor), ), Add Comment 2 rounded raisedbutton in flutter By Tough Tarantula on Aug 29, 2020 RaisedButton( onPressed: () {}, color: Colors.amber, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10)), child: Text("Click This"), ) Source: mightytechno.com Add Comment 5 flutter button border radius By Panicky Panda on May 20, 2020 shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(1...