Answers for "put circle in button flutter"

C
1

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
                        ),
                        ),
                      ),
                    )
Posted by: Guest on August-26-2020

Code answers related to "C"

Browse Popular Code Answers by Language