Last active
February 17, 2025 13:50
-
-
Save rafaelqueiroz88/0070f97ce16c4d11b6509f40f10022e5 to your computer and use it in GitHub Desktop.
SizedBox height - app bar - status bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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