Advertisement
Retch100

borderradius

Mar 27th, 2018
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.99 KB | None | 0 0
  1. children: <Widget>[
  2.                       new Container(
  3.                         padding: new EdgeInsets.only(
  4.                           left: 6.0,
  5.                           right: 10.0,
  6.                           top: 5.0,
  7.                           bottom: 5.0,
  8.                           ),
  9.                         child:
  10.                           new Container(
  11.                             decoration: new BoxDecoration(
  12.                               borderRadius: new BorderRadius.all(
  13.                                 const Radius.circular(80.0),
  14.                               ),
  15.                               color: Colors.red,
  16.                             ),
  17.                             child:
  18.                             new Image.asset(
  19.                             'images/lake.jpg',
  20.                             height: 160.0,
  21.                             fit: BoxFit.cover,
  22.                             ),
  23.                            
  24.                           ),
  25.                       ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement