Note: The Listed platform will permanently shut down December 31, 2026. Your data published on Listed will still be available in your personal Standard Notes account. Learn more

How to make a trasparent Flutter appBar

appBar in Flutter has three main things to consider: 


backgroundColor

set backgroundColor transparent using Colors.transparent


elevation

set elevation to 0 (the elevation value is between 1 and 0 (where 0 means transparent)

example

backgroundColor: Colors.transparent,
elevation: 0,


optional:

shadowColor 

it can be setted transparent using Colors.transparent too

shadowColor: Colors.transparent,


=)


You'll only receive email when they publish something new.

More from emanuele
All posts