fps_monitor 2.0.0 fps_monitor: ^2.0.0 copied to clipboard
A flutter package can help you get the Fps information for your app .
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add fps_monitor
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
fps_monitor: ^2.0.0
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:fps_monitor/bean/fps_info.dart';
import 'package:fps_monitor/util/collection_util.dart';
import 'package:fps_monitor/widget/custom_widget_inspector.dart';
import 'package:fps_monitor/widget/fps_chart.dart';
import 'package:fps_monitor/widget/fps_page.dart';
import 'package:fps_monitor/widget/performance_observer_widget.dart';