ฉันจะทำเอฟเฟกต์“ กระจกฝ้า” ใน Flutter ได้อย่างไร?


99

ฉันกำลังเขียนแอปพลิเคชัน Flutter และฉันต้องการใช้ / ใช้เอฟเฟกต์ "กระจกฝ้า" ที่พบบ่อยใน iOS ฉันต้องทำอย่างไร


1
ฉันเขียนบทความเพื่อแสดงวิธีสร้างเอฟเฟกต์เบลอบน Flutter โดยใช้ BackdropFilter & ImageFilter - อ่านใน Medium
anticafe

คุณสามารถใช้แพ็คเกจเบลอคอนเทนเนอร์
จอน

คำตอบ:


172

คุณสามารถใช้วิดเจ็ต BackdropFilterเพื่อให้ได้เอฟเฟกต์นี้

ภาพหน้าจอ

import 'dart:ui';
import 'package:flutter/material.dart';

void main() {
  runApp(new MaterialApp(home: new FrostedDemo()));
}

class FrostedDemo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Stack(
        children: <Widget>[
          new ConstrainedBox(
            constraints: const BoxConstraints.expand(),
            child: new FlutterLogo()
          ),
          new Center(
            child: new ClipRect(
              child: new BackdropFilter(
                filter: new ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0),
                child: new Container(
                  width: 200.0,
                  height: 200.0,
                  decoration: new BoxDecoration(
                    color: Colors.grey.shade200.withOpacity(0.5)
                  ),
                  child: new Center(
                    child: new Text(
                      'Frosted',
                      style: Theme.of(context).textTheme.display3
                    ),
                  ),
                ),
              ),
            ),
          ),
        ],
      ),
    );
  }
}

ฉันจะทำให้เอฟเฟกต์ฝ้าครอบคลุมความกว้าง / ความสูงทั้งหมดของแอพได้อย่างไร
Pieter


2
หรือหากคุณกำลังพยายามใช้เอฟเฟกต์กระจกฝ้าเป็นตัวกั้นโมดอลสำหรับกล่องโต้ตอบคุณสามารถแก้ไขสำเนา ModalBarrier ของคุณเพื่อรวม BackdropFilter github.com/flutter/flutter/blob/master/packages/flutter/lib/src/…
Collin Jackson

น่าเสียดายที่เอฟเฟกต์เบลอใช้ไม่ได้บนอุปกรณ์ iOS: github.com/flutter/flutter/issues/10284
ทำเครื่องหมาย

3
iirc ปัญหาข้างต้นได้รับการแก้ไขแล้วและเอฟเฟกต์เบลอใช้งานได้บนอุปกรณ์ iOS แล้ว :)
loganrussell48

13

ฉันคิดว่าฉันไม่รู้ความหมายที่แท้จริงของ 'Frosted' (ถ้าตัวอย่างของฉันใช้ไม่ได้ที่นี่)

import 'package:flutter/material.dart';
import 'dart:ui' as ui;

void main() => runApp(
    MaterialApp(
        title: "Frosted glass",
        home: new HomePage()
    )
);

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Stack(
        fit: StackFit.expand,
        children: <Widget>[
          generateBluredImage(),
          new Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              rectShapeContainer(),
            ],
          ),
        ],
      ),
    );
  }

  Widget generateBluredImage() {
    return new Container(
      decoration: new BoxDecoration(
        image: new DecorationImage(
          image: new AssetImage('assets/images/huxley-lsd.png'),
          fit: BoxFit.cover,
        ),
      ),
      //I blured the parent container to blur background image, you can get rid of this part
      child: new BackdropFilter(
        filter: new ui.ImageFilter.blur(sigmaX: 3.0, sigmaY: 3.0),
        child: new Container(
          //you can change opacity with color here(I used black) for background.
          decoration: new BoxDecoration(color: Colors.black.withOpacity(0.2)),
        ),
      ),
    );
  }

  Widget rectShapeContainer() {
    return Container(
      margin: const EdgeInsets.symmetric(horizontal: 40.0, vertical: 10.0),
      padding: const EdgeInsets.all(15.0),
      decoration: new BoxDecoration(
        //you can get rid of below line also
        borderRadius: new BorderRadius.circular(10.0),
        //below line is for rectangular shape
        shape: BoxShape.rectangle,
        //you can change opacity with color here(I used black) for rect
        color: Colors.black.withOpacity(0.5),
        //I added some shadow, but you can remove boxShadow also.
        boxShadow: <BoxShadow>[
          new BoxShadow(
            color: Colors.black26,
            blurRadius: 5.0,
            offset: new Offset(5.0, 5.0),
          ),
        ],
      ),
      child: new Column(
        children: <Widget>[
          new Text(
            'There\'s only one corner of the universe you can be certain of improving and that\'s your own self.',
            style: new TextStyle(
              color: Colors.white,
              fontSize: 20.0,
            ),
          ),
        ],
      ),
    );
  }
}

ผล:

ป้อนคำอธิบายภาพที่นี่

ฉันหวังว่านี่จะช่วยใครบางคนได้


1
ช่วยทั้งหมด ลืมไปโดยสิ้นเชิงเกี่ยวกับตัวเลือก 'Stack' ... ขอบคุณมาก
AhabLives

คุณจะทำให้ฟรอสติ้งเป็นไปตามรูปร่างของภาชนะหลักได้อย่างไร? มันยังคงแสดงเป็นรูปสี่เหลี่ยมผืนผ้าเมื่อเพิ่มเข้าไปในภาชนะทรงกลม
Kaki Master Of Time

@KakiMasterOfTime ฉันคิดว่าฉันไม่ได้รับคำถามของคุณอย่างถูกต้อง แต่ถ้าคุณสร้างรูปร่างคอนเทนเนอร์ rectShape ให้เป็นวงกลมโดยเอา borderRadius ออก
Blasanka

1
ฉันชอบคำพูด :-)
santanu bera

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.