We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe61a4 commit 89e0213Copy full SHA for 89e0213
.fvm/fvm_config.json
@@ -1,4 +1,4 @@
1
{
2
- "flutterSdkVersion": "beta",
+ "flutterSdkVersion": "2.5.3",
3
"flavors": {}
4
}
lib/main.dart
@@ -25,7 +25,10 @@ import 'src/theme.dart';
25
26
void main() async {
27
WidgetsFlutterBinding.ensureInitialized();
28
- await Window.initialize();
+ // Transparency compatibility for windows & linux
29
+ if (!Platform.isMacOS) {
30
+ await Window.initialize();
31
+ }
32
33
Hive.registerAdapter(SidekickSettingsAdapter());
34
Hive.registerAdapter(ProjectPathAdapter());
0 commit comments