How to Get Glassmorphism Effect in Flutter

What is Glassmorphism?

Flutter Glassmorphism is a term used to describe UI design that emphasizes light or dark objects, placed on top of colorful backgrounds. A background blur is placed on the objects which allows the background to shine through – g…


This content originally appeared on DEV Community and was authored by rrtutors

What is Glassmorphism?

Flutter Glassmorphism is a term used to describe UI design that emphasizes light or dark objects, placed on top of colorful backgrounds. A background blur is placed on the objects which allows the background to shine through – giving it the impression of frosted glass

You can wrap your widget with Back Drop Filter and add an image filter but, this process is a bit complicated so, we will see an easy way all you have to do is add a line like this to your package's pubspec.yaml.

dependencies:
  glassmorphism: ^3.0.0

Once installed you will get access to a widget called GlassmorphicContainer, it has various properties

width: used to control the width of the container.

height: used to control the height of the container.

borderRadius: used to change the border radius.

linearGradient: used to provide background gradient with different colors.
child: which will hold all our widget that will have this effect.

we can add gradient like this for example

LinearGradient(colors: [

                        Colors.white.withOpacity(0.2),

                        Colors.white.withOpacity(0.05)

                      ], begin: Alignment.topLeft, end: Alignment.bottomRight),

this will have the most common white forsted glass effect.

Flutter Glassmorphism

Flutter Glassmorphism

Complete code for Flutter Login Page - FrostedGlass Background Flutter

Find Flutter Login Page example


This content originally appeared on DEV Community and was authored by rrtutors


Print Share Comment Cite Upload Translate Updates
APA

rrtutors | Sciencx (2021-12-03T17:02:14+00:00) How to Get Glassmorphism Effect in Flutter. Retrieved from https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/

MLA
" » How to Get Glassmorphism Effect in Flutter." rrtutors | Sciencx - Friday December 3, 2021, https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/
HARVARD
rrtutors | Sciencx Friday December 3, 2021 » How to Get Glassmorphism Effect in Flutter., viewed ,<https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/>
VANCOUVER
rrtutors | Sciencx - » How to Get Glassmorphism Effect in Flutter. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/
CHICAGO
" » How to Get Glassmorphism Effect in Flutter." rrtutors | Sciencx - Accessed . https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/
IEEE
" » How to Get Glassmorphism Effect in Flutter." rrtutors | Sciencx [Online]. Available: https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/. [Accessed: ]
rf:citation
» How to Get Glassmorphism Effect in Flutter | rrtutors | Sciencx | https://www.scien.cx/2021/12/03/how-to-get-glassmorphism-effect-in-flutter/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.