Ejemplo 1: flutter de ajuste de imagen
FittedBox(
child: Image.asset('foo.png'),
fit: BoxFit.fill,
)
Ejemplo 2: contenedor de cubierta de imagen de aleteo
// If your container has a fixed height use the following code
Container(
width: MediaQuery.of(context).size.width,
height: 100,
decoration: BoxDecoration(
image: DecorationImage(
fit: BoxFit.fill,
image: NetworkImage("https://picsum.photos/250?image=9"),
),
),
)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)