91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flutter中獲取屏幕及Widget的寬高示例代碼

發布時間:2020-09-18 20:54:27 來源:腳本之家 閱讀:217 作者:劉斯龍 欄目:移動開發

前言

我們平時在開發中的過程中通常都會獲取屏幕或者 widget 的寬高用來做一些事情,在 Flutter 中,我們有兩種方法來獲取 widget 的寬高。

MediaQuery

一般情況下,我們會使用如下方式去獲取 widget 的寬高:

final size =MediaQuery.of(context).size;
final width =size.width;
final height =size.height; 

但是如果不注意,這種寫法很容易報錯,例如下面的寫法就會報錯:

import 'package:flutter/material.dart';

class GetWidgetWidthAndHeiget extends StatelessWidget {
 @override
 Widget build(BuildContext context) {
 final size =MediaQuery.of(context).size;
 final width =size.width;
 final height =size.height;
 print('width is $width; height is $height');
 return MaterialApp(
  home: Scaffold(
  appBar: AppBar(
   title: Text('Width & Height'),
  ),
  body: Container(
   width: width / 2,
   height: height / 2,
  ),
  ),
 );
 }
}

在代碼中,我們是想獲取屏幕的寬和高,然后將屏幕寬高的一半分別賦值給 Container 的寬和高,但上述代碼并不能成功運行,會報如下錯誤:

flutter: The following assertion was thrown building GetWidgetWidthAndHeiget(dirty):
flutter: MediaQuery.of() called with a context that does not contain a MediaQuery.
flutter: No MediaQuery ancestor could be found starting from the context that was passed to MediaQuery.of().
flutter: This can happen because you do not have a WidgetsApp or MaterialApp widget (those widgets introduce
flutter: a MediaQuery), or it can happen if the context you use comes from a widget above those widgets.

從錯誤異常中我們可以大概了解到有兩種情況會導致上述異常:

  • 當沒有 WidgetsApp or MaterialApp 的時候,我們使用 MediaQuery.of(context) 來獲取數據。
  • 當我們在當前小部件中使用了上一個小部件的 context,來使用 MediaQuery.of(context) 獲取數據的時候。

我們上述的代碼很顯然是屬于第一種情況,也就是說我們在使用 MediaQuery.of(context) 的地方并沒有一個 WidgetsApp or MaterialApp 來提供數據。

解決方法就是將 MediaQuery.of(context) 挪到 MaterialApp 內,如下:

import 'package:flutter/material.dart';

class GetWidgetWidthAndHeiget extends StatelessWidget {
 @override
 Widget build(BuildContext context) {
 return MaterialApp(
  home: HomePage(),
 );
 }
}

class HomePage extends StatelessWidget {
 @override
 Widget build(BuildContext context) {
 final size = MediaQuery.of(context).size;
 final width = size.width;
 final height = size.height;
 print('width is $width; height is $height');
 return Scaffold(
  appBar: AppBar(
  title: Text('Width & Height'),
  ),
  body: Center(
  child: Container(
   color: Colors.redAccent,
   width: width / 2,
   height: height / 2,
  ),
  ),
 );
 }
}

運行效果及輸出如下:

flutter: width is 414.0; height is 896.0

上述代碼中,我們獲取的是 MaterialApp 的寬高,也就是屏幕的寬高

Flutter中獲取屏幕及Widget的寬高示例代碼

那么如果我們要需要知道上述紅色的 Container 容器的寬高怎么辦呢?這里我們可以使用 GlobalKey

GlobalKey

使用 GlobalKey 的步驟如下:

  • 聲明一個 GlobalKey final GlobalKey globalKey = GlobalKey();
  • 給 widget 設置 GlobalKey key: globalKey
  • 通過 globalKey 來獲取該 widget 的 size
final containerWidth = globalKey.currentContext.size.width;
final containerHeight = globalKey.currentContext.size.height;
print('Container widht is $containerWidth, height is $containerHeight');

修改過后的 HomePage 代碼如下:

class HomePage extends StatelessWidget {

 final GlobalKey globalKey = GlobalKey();

 void _getWH() {
 final containerWidth = globalKey.currentContext.size.width;
 final containerHeight = globalKey.currentContext.size.height;
 print('Container widht is $containerWidth, height is $containerHeight');
 }

 @override
 Widget build(BuildContext context) {
 final size = MediaQuery.of(context).size;
 final width = size.width;
 final height = size.height;
 print('width is $width; height is $height');
 return Scaffold(
  appBar: AppBar(
  title: Text('Width & Height'),
  ),
  body: Center(
  child: Container(
   key: globalKey,
   color: Colors.redAccent,
   width: width / 2,
   height: height / 2,
  ),
  ),
  floatingActionButton: FloatingActionButton(
  onPressed: _getWH,
  child: Icon(Icons.adjust),
  ),
 );
 }
}

上述代碼中,我們將聲明的 globalKey 設置給了 Container , 當我們點擊頁面中的 FloatingActionButton 的時候,就會使用 globalKey 來獲取 Container 的寬高,也就是_getWH() 中執行的代碼。

運行結果及輸出如下:

flutter: Container widht is 207.0, height is 448.0

Flutter中獲取屏幕及Widget的寬高示例代碼

如果錯誤,還請指出,謝謝

完整源碼

參考鏈接

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博客| 博湖县| 运城市| 五指山市| 壤塘县| 昌平区| 汾西县| 久治县| 从化市| 普陀区| 手游| 揭西县| 连云港市| 南涧| 胶州市| 科尔| 三河市| 惠来县| 前郭尔| 临武县| 英超| 望都县| 芦溪县| 三亚市| 台中县| 赞皇县| 巨鹿县| 二连浩特市| 东乡族自治县| 资溪县| 开平市| 滕州市| 明光市| 盱眙县| 丰镇市| 平罗县| 登封市| 漳平市| 延安市| 临颍县| 潼关县|