I want to disable screen resizing on a flutter desktop application but it doesn't seem to work. I also want to change the window title.
import 'package:desktop_window/desktop_window.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await DesktopWindow.setMinWindowSize(const Size(1280, 720));
await DesktopWindow.setMaxWindowSize(const Size(1280, 720));
runApp(MyApp());
}