container image decoration flutter code example

Example 1: flutter decoration image

Container(
  width: 190.0,
  height: 190.0,
  decoration: new BoxDecoration(
  shape: BoxShape.circle,
  image: new DecorationImage(
  fit: BoxFit.fill,
  image: new NetworkImage(
  "https://i.imgur.com/BoN9kdC.png"))))

Example 2: container decoration box flutter

new Container(
  margin: const EdgeInsets.all(15.0),
  padding: const EdgeInsets.all(3.0),
  decoration: BoxDecoration(
    border: Border.all(color: Colors.blueAccent)
  ),
  child: Text("My Awesome Border"),
)