Describe the bug
The WindowsIcons.chrome_restore icon is not displaying correctly. Instead of the expected Windows-style icon, the FluentIcons.chrome_restore icon (which has a different visual style) is being rendered.
To Reproduce
Steps to reproduce the behavior:
- Use an
IconButton widget with the WindowsIcons.chrome_restore icon.
- Specifically, use the following code snippet:
IconButton(
icon: WindowsIcon(WindowsIcons.chrome_restore),
onPressed: windowManager.close,
),
- Run the application.
- Observe that the button displays the Fluent-style restore icon instead of the correct Windows-style one.
Expected behavior
The IconButton should correctly display the Windows-style window restore icon ( WindowsIcons.chrome_restore ).
Screenshots
