Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

circular button in flutter

Container(
                      width: 90,
                      height: 90,
                      child: RaisedButton(onPressed: (){
                      },
                        color: Colors.deepOrange,  
                        textColor: Colors.white,
                        shape: CircleBorder(side: BorderSide.none),
                        child: Text('Login',style: TextStyle(
                            fontSize: 20.0
                        ),
                        ),
                      ),
                    )
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #circular #button #flutter
ADD COMMENT
Topic
Name
2+9 =