Skip to content

Instantly share code, notes, and snippets.

@mamedshahmaliyev
Created May 7, 2020 13:32
Show Gist options
  • Save mamedshahmaliyev/139e8d6728a65a53f6384768bd170917 to your computer and use it in GitHub Desktop.
Save mamedshahmaliyev/139e8d6728a65a53f6384768bd170917 to your computer and use it in GitHub Desktop.
flutter overlay with opacity
Stack(
children: <Widget>[
Column(
children: <Widget>[
Container(),
Container(),
],
),
_overlay(True)
],
),
Positioned _overlay(bool show){
return Positioned(
right: show ? 5.0 : double.infinity,
top: 0.0,
left: 0.0,
bottom: 0.0,
child: Container(
color: Colors.white70.withOpacity(0.7),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment