es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: ANTD-MOBILE

¿Existe una solución real para background-attachment: fixed en dispositivos móviles?

¿Existe una solución real de background-attachment: fixed en dispositivos móviles? Cuando diseñas el fondo de tu sitio de esta manera: section { background: cover fixed no-repeat; } .section-1 { background-image: url(../img/test-image.jpg); } .section-2 { background-image: url(../img/test-image-2.jpg); } Se ve de la mejor manera cuando las imágenes desplazadas crean un efecto . . . Read more

Un RenderFlex desbordado en 1.3 píxeles en el lado derecho.

Column( children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( Cart().freeDeliveryString, style: Theme.of(context).textTheme.headline4, ), ElevatedButton( onPressed: () { Navigator.pushNamed(context, ‘/’); }, style: ElevatedButton.styleFrom( primary: Colors.black, shape: RoundedRectangleBorder(), elevation: 0, ), child: Text( ‘Añadir más artículos’, style: Theme.of(context) .textTheme .headline4! .copyWith(color: Colors.white), ), ), ], ), ], ),