“Flutter MediaQuery” Respostas de código

Flutter MediaQuery

Container(
  width: MediaQuery.of(context).size.width,
  color: Colors.blue,
  child: Text('I cover the whole width of the screen!')
)
Joyful Code

Consulta de mídia Flutter

Container(
  height:MediaQuery.of(context).size.height,
  width: MediaQuery.of(context).size.width,
  color: Colors.blue,
  child: Text('I cover the whole width of the screen!')
)
Kalyan Chandra

Respostas semelhantes a “Flutter MediaQuery”

Perguntas semelhantes a “Flutter MediaQuery”

Mais respostas relacionadas para “Flutter MediaQuery” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código