Flutter web overflows vertically on android mobile chrome browser

33 Views Asked by At

Code works fine on large screens but on mobile Chrome browser container with screen height and width overflow vertically, until I touch screen once.

    return Scaffold(
      body: Container(
        height: Get.height,
        width: Get.width,
        decoration: BoxDecoration(
          color: Colors.grey,
          border: Border.all(
            color: Colors.red,
            width: 18
          )
        ),
        child: Center(
          child: Text("Page"),
        ),
      ),
    );

Screen at first, without touch on screen

enter image description here

When I touch once on screen

enter image description here

0

There are 0 best solutions below