WebUri(widget.initialFile!) : null, ); return MediaQuery.removePadding( context: context, removeTop: true, child: Scaffold( resizeToAvoidBottomInset: getIt.get<PlatformService>().isAndroid, appBar: widget.title != null ? SecondaryAppBarWidget( title: widget.title!, closeAction: () async {...
When I change that to android:windowSoftInputMode="adjustPan", I would expect that the keyboard appearance for text input fields does not resize the window, but that doesn't seem to work. Is this a Flutter problem or do I misinterpret the way adjustResize should work? I know of SingleCh...