Search code examples
imageflutterdartdimensions

Flutter Main Screen Dimension?


I'm working on an app that shows items when you press the each button a certain amount of times. I want to find a background for the app since plain color isn't looking so good but I can't find out how big the screen is for a perfect resolution picture. Does anyone know the dimensions of the main screen (excluding the App Bar title)?


Solution

  • Use MediaQuery class

    var deviceHeight = MediaQuery.of(context).size.height;