Is there any way we can limit the size of Chrome flutter_web app? Like we can do in flutter_desktop
if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) {
setWindowTitle('App title');
setWindowMinSize(const Size(700, 500));
setWindowMaxSize(Size.infinite);
}
Plugin for flutter desktop : window_size