flutter make container round code example

Example 1: flutter container rounded corners

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red[500],
    ),
    borderRadius: BorderRadius.all(Radius.circular(20))
  ),
  child: ...
)

Example 2: round container flutter

Container(
      width: screenWidth / 7,
      decoration: BoxDecoration(
        border: Border.all(
          color: Colors.red[500],
        ),
      ),
      child: Padding(
        padding: EdgeInsets.all(5.0),
        child: Column(
          children: <Widget>[
            Text(
              '6',
              style: TextStyle(
                  color: Colors.red[500],
                  fontSize: 25),
            ),
            Text(
             'sep',
              style: TextStyle(
                  color: Colors.red[500]),
            )
          ],
        ),
      ),
    );

Example 3: flutter container rounded corners

new Center(    child: new Container(      width: 200.0,      height: 200.0,      color: Colors.white,      child: new Container(        decoration: new BoxDecoration(          border: new Border.all(              color: Colors.green,              width: 5.0,              style: BorderStyle.solid          ),          borderRadius: new BorderRadius.all(new Radius.circular(20.0)),          image: new DecorationImage(              image: new AssetImage('assets/images/JL-Logo-150.png'),          )        ),      ),    ),  );

Tags:

Dart Example