“ERRO DE FLUTER DE QUESTÃO DE MEDIA” Respostas de código

MediaQuery.of () chamado com um contexto que não contém um MediaQuery.

You need a MaterialApp or a WidgetsApp around your widget. They provide the MediaQuery. When you call .of(context) flutter will always look up the widget tree to find the widget.
Real Rabbit

ERRO DE FLUTER DE QUESTÃO DE MEDIA

void main() => runApp(App());

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Title',
      theme: kThemeData,
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    final size = MediaQuery.of(context).size;

    return Container(
      child: ...,
    );
  }
}
cankush625

Respostas semelhantes a “ERRO DE FLUTER DE QUESTÃO DE MEDIA”

Perguntas semelhantes a “ERRO DE FLUTER DE QUESTÃO DE MEDIA”

Mais respostas relacionadas para “ERRO DE FLUTER DE QUESTÃO DE MEDIA” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código