Answers for "Button with cut edges flutter"

0

Button with cut edges flutter

Container(
      height: 50,
      width: 300,
      decoration: BoxDecoration(
        border: Border.all(color: Colors.white, width: 2.0),
        borderRadius: BorderRadius.circular(20)
      ),
        child: FlatButton.icon(onPressed:(){},
          color: Colors.blue,
             icon: Icon(Icons.lock, color: Colors.white, size: 30,),
          label: Text("Log in", style: TextStyle(
            fontSize: 30,
                color: Colors.white
          ),),
        ),
    );
Posted by: Guest on March-15-2021

Browse Popular Code Answers by Language