Open
Description
The example provided in the README file, the useInheritedMediaQuery: true property has been deprecated. This leads to a warning when running the code, as it is no longer supported in the latest Flutter versions.
Here is the relevant code from the README:
MaterialApp(
useInheritedMediaQuery: true, // **Deprecated**
locale: DevicePreview.locale(context),
builder: DevicePreview.appBuilder,
theme: ThemeData.light(),
darkTheme: ThemeData.dark(),
home: const HomePage(),
)
Suggested Fix:
You may want to remove or replace useInheritedMediaQuery: true with an updated approach, or suggest using the appropriate alternative for handling media queries in the current Flutter version.
Metadata
Metadata
Assignees
Labels
No labels