I would like to make my Flutter app take up the entire screen in Android while still showing both the status bar and the navigation bar, with both of them transparent, to achiev
So if you are using Flutter the procedure is:
AppBar()
extendBeyondAppBar
true
elevation
As an example:
return Scaffold( extendBodyBehindAppBar: true, appBar: AppBar( elevation: 0, )