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

溫馨提示×

溫馨提示×

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

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

Flutter將整個App變為灰色的方法是什么

發布時間:2021-12-14 10:07:28 來源:億速云 閱讀:167 作者:iii 欄目:開發技術

這篇文章主要介紹“Flutter將整個App變為灰色的方法是什么”,在日常操作中,相信很多人在Flutter將整個App變為灰色的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Flutter將整個App變為灰色的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    前言

    為了讓更多的人永遠記住12月13日,各大廠都在這一天將應用變灰了。

    Flutter將整個App變為灰色的方法是什么

    那么接下來我們看一下Flutter是如何實現的。

    Flutter中實現整個App變為灰色

    在Flutter中實現整個App變為灰色是非常簡單的,

    只需要在最外層的控件上包裹ColorFiltered,用法如下:

    ColorFiltered(顏色過濾器)

    看名字就知道是增加顏色濾鏡效果的,

    ColorFiltered(
          colorFilter:ColorFilter.mode(Colors.grey, BlendMode.color),
          child: child,
        );

    將上面代碼放到全局根widget下,即可設置全部頁面顏色變灰

    通過colorFilter可設置某種顏色過濾,比如變灰設置灰色即可,以及顏色混合模式
    ColorFiltered 小部件繼承SingleChildRenderObjectWidget,因此會提供一個child子布局,這里可以放置想要過濾顏色的頁面;

    最終我們就合成一張這樣帶濾鏡效果

    追蹤源碼

    我我們持續追蹤源碼到 RenderImage 類中,可以看到最終也是創建了一個 ColorFilter

    class ColorFiltered extends SingleChildRenderObjectWidget {
      /// Creates a widget that applies a [ColorFilter] to its child.
      ///
      /// The [colorFilter] must not be null.
      const ColorFiltered({required this.colorFilter, Widget? child, Key? key})
          : assert(colorFilter != null),
            super(key: key, child: child);
    
      /// The color filter to apply to the child of this widget.
      final ColorFilter colorFilter;
    
      @override
      RenderObject createRenderObject(BuildContext context) => _ColorFilterRenderObject(colorFilter);
    
      @override
      void updateRenderObject(BuildContext context, RenderObject renderObject) {
        (renderObject as _ColorFilterRenderObject).colorFilter = colorFilter;
      }
    
      @override
      void debugFillProperties(DiagnosticPropertiesBuilder properties) {
        super.debugFillProperties(properties);
        properties.add(DiagnosticsProperty<ColorFilter>('colorFilter', colorFilter));
      }
    }

    設置前

    Flutter將整個App變為灰色的方法是什么

    設置后

    Flutter將整個App變為灰色的方法是什么

    功能就這樣實現了,功能簡單,意義不凡。

    附:ColorFiltered還可以實現類似“濾鏡”效果,讓一張圖片和color進行融合:

    Row(
    
          children: <Widget>[
    
            Expanded(
    
              child: Image.asset('images/1.png'),
    
            ),
    
            Expanded(
    
                child: ColorFiltered(
    
              colorFilter: ColorFilter.mode(Colors.pink[200], BlendMode.modulate),
    
              child: Image.asset('images/1.png'),
    
            ))
    
          ],
    
        )

    到此,關于“Flutter將整個App變為灰色的方法是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

    向AI問一下細節

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

    AI

    甘孜县| 吉安市| 四子王旗| 诸暨市| 赤水市| 黑龙江省| 江陵县| 尖扎县| 阳泉市| 城固县| 鹿邑县| 云林县| 镇平县| 玉龙| 顺昌县| 罗甸县| 靖江市| 道孚县| 读书| 穆棱市| 察雅县| 都兰县| 建昌县| 九江县| 寻乌县| 嘉善县| 宁安市| 辽阳县| 保定市| 镇宁| 改则县| 通江县| 桑植县| 新密市| 新余市| 大宁县| 沿河| 双流县| 巴林右旗| 玛曲县| 铜陵市|