flutter_metrics

Creator: coderz1093

Last updated:

0 purchases

flutter_metrics Image
flutter_metrics Images
Add to Cart

Description:

flutter metrics

Flutter Metrics #

This plugin is a plugin that applies the text size using the TextScaleFactor value.
How to use #
First, wrap it with a MetricsApp widget.
void main() async {
WidgetsFlutterBinding.ensureInitialized();

await MetricsApp.ensureInitialized();

runApp(
MetricsApp(
child: const MyApp(),
defaultMetric: const Metric(1.0),
metrics: const [
Metric(0.5),
Metric(1.0),
Metric(2.0),
],
),
);
}
copied to clipboard
Change Metric Value #
How to update metric values
Whenever the Metric value changes, we store it in SharedPreferences. Therefore, when the application is newly started, the saved value is read and applied.
context.setMetric(const Metric(0.5));
copied to clipboard
Apply Metric Value #
How to apply metric values
Text(
'Lorem Ipsum is simply dummy text of the printing...',
textScaleFactor: context.metric.value,
),
copied to clipboard
Example #
See example/lib/main.dart for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.