Answers for "image code in flutter"

0

image in container flutter

Container(
      height: 120.0,
      width: 120.0,
      decoration: BoxDecoration(
        image: DecorationImage(
          image: AssetImage(
              'assets/assets/alucard.jpg'),
          fit: BoxFit.fill,
        ),
        shape: BoxShape.circle,
      ),
    )
Posted by: Guest on August-02-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language