I used MediaQuery.of(context) but it has render overflow error on small screen – Flutter
here is the snippet and I used mediaQuery class to resolve render overflow problem, but there the error can you tell me how to solve it Container( padding: AppTheme.navbarPadding, alignment: Alignment.center, height: MediaQuery.of(context).size.height * 0.11, width: MediaQuery.of(context).size.width * 0.94, decoration:…