Open Abdulazeezvp opened 2 years ago
+1 observed the same. Any plans to fix this issue?
I was able to fix it directly in the GTK code in linux/my_application.cc
adding:
gtk_widget_set_size_request(GTK_WIDGET(window), 800, 600);
Reference: https://docs.gtk.org/gtk3/method.Widget.set_size_request.html
+1
for Linux desktop application,
setMaximumSize
andsetMinimumSize
not applying while building the app, if hot reload is performed the it is working as expected.setAsFrameless
is working which is added along with maximum and minimum function.calling from
main.dart
initState
working in windows but not in Linux(using ubuntu 22.04 LTS)