Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

round button flutter

Padding(
  padding: EdgeInsets.only(left: 150.0, right: 0.0),
  child: RaisedButton(
    textColor: Colors.white,
    color: Colors.black,
    child: Text("Search"),
    onPressed: () {},
    shape: new RoundedRectangleBorder(
      borderRadius: new BorderRadius.circular(30.0),
    ),
  ),
)
Source by 16shuklarahul.medium.com #
 
PREVIOUS NEXT
Tagged: #button #flutter
ADD COMMENT
Topic
Name
3+3 =