“СМИ запрос трепетать” Ответ

Flutter MediaQuery

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

СМИ запрос трепетать

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

СМИ запрос ошибки трепета

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

Ответы похожие на “СМИ запрос трепетать”

Вопросы похожие на “СМИ запрос трепетать”

Больше похожих ответов на “СМИ запрос трепетать” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования