Quoted:
Yes, still showing black screen
Message:
I found a similar issue in the Flutter repo. I may try upgrading the Flutter version and including it in the next release to see if it resolves the issue on your Windows system.
opened 08:09AM - 20 Jun 24 UTC
closed 05:51PM - 12 Aug 24 UTC
engine
platform-windows
c: rendering
a: desktop
P1
r: fixed
team-windows
triaged-windows
3 years ago i created this issue: https://github.com/flutter/flutter/issues/8958… 3. It was only relevant for Windows 7/8 users. However, since the last flutter stable update, i can see that this problem is present on Windows 10/11 users.
UI Is not rendered, however, all the buttons are clickable (cursor changes when you hover button's location and if you add some winapi messagebox, it appears on the screen).
I have no idea how to debug this since this issue is present on small amount of PCs and i myself do not face this problem. **Any ideas on debugging on PC without flutter?**
![image](https://github.com/flutter/flutter/assets/63228361/8cdf9b96-dd76-4b13-a38e-965a59caa909)
I tried to fix this with d3dcompiler_47.dll (that helped on Windows 7), but it does not help anymore.
![image](https://github.com/flutter/flutter/assets/63228361/2e3866cb-4fff-47f3-aa68-adf2b3fc83f9)
![image](https://github.com/flutter/flutter/assets/63228361/7a82eba5-50b3-42b8-8673-c895fdfd564b)
![image](https://github.com/flutter/flutter/assets/63228361/a8016320-7a2c-4051-bb8e-87dbb5dbcce9)
![image](https://github.com/flutter/flutter/assets/63228361/55c7e925-7678-42ba-960a-fcfb6f820f03)
```dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Material App',
home: Scaffold(
appBar: AppBar(
title: Text('Material App Bar'),
),
body: Center(
child: Container(
child: Text('Hello World'),
),
),
),
);
}
}
```
Timestamp:
2025-01-16T13:14:24.484000+00:00
Attachment:
Discord Message ID:
1329438610356834368