Skip to content

Instantly share code, notes, and snippets.

@rafaelqueiroz88
Last active February 17, 2025 13:50
Show Gist options
  • Save rafaelqueiroz88/0070f97ce16c4d11b6509f40f10022e5 to your computer and use it in GitHub Desktop.
Save rafaelqueiroz88/0070f97ce16c4d11b6509f40f10022e5 to your computer and use it in GitHub Desktop.
SizedBox height - app bar - status bar
SizedBox(
height: MediaQuery.of(context).size.height -
kToolbarHeight - // Default AppBar size
MediaQuery.of(context).padding.top, // Default status bar size
child: Text(''),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment