auto adjust image flutter code example
Example 1: resize image asset flutter
Image.asset( 'assets/images/file-name.jpg', height: 100, width: 100, )
Example 2: image fit flutter
FittedBox(
child: Image.asset('foo.png'),
fit: BoxFit.fill,
)