Skip to content

Instantly share code, notes, and snippets.

@mhmzdev
Created April 3, 2020 11:09
Show Gist options
  • Save mhmzdev/91e7bdf965857252061de6a24fd1db8e to your computer and use it in GitHub Desktop.
Save mhmzdev/91e7bdf965857252061de6a24fd1db8e to your computer and use it in GitHub Desktop.
containerWidget
Container(
height: 500,
margin: EdgeInsets.symmetric(horizontal: 10),
child: Center(child: Text('Tasks Will be placed here!')),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: !darkTheme ? Colors.black38 : Colors.white),
boxShadow: [
BoxShadow(
color: Colors.black,
blurRadius: 8,
)
]),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment