Advertisement
Retch100

borderradius solution

Mar 27th, 2018
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.78 KB | None | 0 0
  1. new Container(
  2.                             width: 130.0,
  3.                             height: 130.0,
  4.                             decoration: new BoxDecoration(
  5.                               color: const Color(0xff7c94b6),
  6.                               image: new DecorationImage(
  7.                                 image: new AssetImage('images/lake.jpg'),
  8.                                 fit: BoxFit.cover,
  9.                               ),
  10.                               borderRadius: new BorderRadius.all(new Radius.circular(8.0)),
  11.                               //  order: new Border.all(
  12.                               //  color: Colors.green,
  13.                               //  width: 1.0,
  14.                               //  ),
  15.                             ),
  16.                           ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement