Inserting image into a container - Flutter

PHOTO EMBED

Tue Mar 16 2021 16:29:48 GMT+0000 (Coordinated Universal Time)

Saved by @MichaelJohnston #dart #flutter

Container(
      height: 120.0,
      width: 120.0,
      decoration: BoxDecoration(
        image: DecorationImage(
          image: AssetImage(
              'assets/assets/alucard.jpg'),
          fit: BoxFit.fill,
        ),
        shape: BoxShape.circle,
      ),
    )
content_copyCOPY

https://stackoverflow.com/questions/52211283/inserting-image-into-a-container-flutter-app