show_fps 1.0.0 copy "show_fps: ^1.0.0" to clipboard
show_fps: ^1.0.0 copied to clipboard

outdated

A package to show FPS on screen.

Show FPS #

GitHub stars pub package

Use ShowFPS to monitor your app's FPS (Frames Per Second) in real time.

Screenshot

Installation #

Add show_fps: ^1.0.0 in your project's pubspec.yaml:

dependencies:
  show_fps: ^1.0.0

Usage #

Import show_fps in your dart file:

import 'package:show_fps/show_fps.dart';

Then warp your Main Widget with ShowFPS widget:

MaterialApp(
      title: 'FPS Monitor',
      home: Material(
        child: ShowFPS(
          visible: true,
          showChart: true,
          borderRadius: BorderRadius.all(Radius.circular(11)),
          child: MyHomePage(title: 'FPS Monitor'),
        ),
      ),
    );
39
likes
0
points
1.12k
downloads

Publisher

verified publishermantreshkhurana.com

Weekly Downloads

A package to show FPS on screen.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on show_fps