Varun Lohade
Varun Lohade

Reputation: 31

How to give a container a shinny glassmorphism look in flutter, with shinny borders?

I am trying to code a glassmorphism container that looks like a shiny glass with shining border.

Upvotes: 1

Views: 1363

Answers (1)

HoRiz
HoRiz

Reputation: 798

use the flutter BackdropFilter Widget and properties, and try to have this over the colored spots.

BackdropFilter https://api.flutter.dev/flutter/widgets/BackdropFilter-class.html

also, use the Glassmorphism package to achieve a similar effect.

Glassmorphism https://pub.dev/documentation/glassmorphism

Upvotes: 2

Related Questions