We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1026b6 commit a5ce2e2Copy full SHA for a5ce2e2
1 file changed
bitsdojo_window/lib/src/widgets/window_border.dart
@@ -16,9 +16,11 @@ class WindowBorder extends StatelessWidget {
16
Widget build(BuildContext context) {
17
bool isWindowsApp =
18
(!kIsWeb) && (defaultTargetPlatform == TargetPlatform.windows);
19
+ bool isLinuxApp =
20
+ (!kIsWeb) && (defaultTargetPlatform == TargetPlatform.linux);
21
- // Only show border on Windows
- if (!isWindowsApp) {
22
+ // Only show border on Windows and Linux
23
+ if (!(isWindowsApp || isLinuxApp)) {
24
return child;
25
}
26
0 commit comments