bitsdojo_window icon indicating copy to clipboard operation
bitsdojo_window copied to clipboard

A Flutter package that makes it easy to customize and work with your Flutter desktop app window.

Results 110 bitsdojo_window issues
Sort by recently updated
recently updated
newest added

How to make the interface appear outermost?

I am using a custom button widget and `appWindow.maximizeOrRestore()` to maximize / restore the window. I have noticed that when my taskbar is set to automatically hide and I maximize...

When running at 125% monitor magnification, the button image is 2px visible. If I move it to 100% size, it goes back to 1px. It goes away with antialiasing, but...

with adding the following to main.cpp: ```cpp #include auto bdw = bitsdojo_window_configure(BDW_CUSTOM_FRAME | BDW_HIDE_ON_STARTUP); ``` Resizing through windows snapping (win key + left/right) will be wider and taller than intended,...

For some reason the code compiles correctly but exits, This happens when i edit `main.cpp` only I have shared required logs in verbose, Please let me know if any thing...

![image](https://user-images.githubusercontent.com/1250894/121057802-85cefa00-c774-11eb-9574-56a3e43730f5.png) What the title says. My monitor with 150% scaling get an uneven stroke weight for the rectangle icon. Haven't looked at the code but I would draw it to...

I created an app that works on Windows using bitsdojo_window + fluent_ui. I want to port this app to Linux and MacOS. When I try to navigate to a new...

On Running on Windows, Somes times white screen comes and on clicking maximise button UI becomes visible ![image](https://user-images.githubusercontent.com/48257422/187674703-66582de8-2450-432c-b251-b904db8c63f8.png) **flutter doctor -v** ``` [√] Flutter (Channel stable, 3.3.0, on Microsoft Windows...

Is there a way to start an app with the window maximized properly? Putting win.maximize() in doWhenWindowReady sortof works. You can add it either before or after win.show(), but in...

enhancement

Hi everyone! After initilizing with method : ```dart doWhenWindowReady(() { final initialSize = Size(600, 450); appWindow.minSize = initialSize; appWindow.size = initialSize; appWindow.alignment = Alignment.center; appWindow.show(); }); ``` I try to...