Flutterにてアプリ模写をしています。
下記コード内の、MediaQueryの2 - 60 の意味について伺いたいです。
※エラーは出ていないです。
Flutter
1Positioned( 2 left: 0, 3 right: 0, 4 bottom: 0, 5 child: Container( 6 height: MediaQuery.of(context).size.height / 2 - 60, 7 decoration: BoxDecoration( 8 color: Colors.white, 9 borderRadius: BorderRadius.only( 10 topRight: Radius.circular(32), 11 topLeft: Radius.circular(32), 12 ) 13 ), 14 ), 15 ),
/ 2 - 60
height: MediaQuery.of(context).size.height / 2 - 60,
下記、スクリーンショットです。
ご返信お待ちしております????
回答1件
あなたの回答
tips
プレビュー