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

A package to show FPS badge on screen.

FPS Badge #

GitHub stars pub package

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

Screenshot

Installation #

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

dependencies:
  fps_badge: ^1.0.0

Usage #

Import fps_badge in your dart file:

import 'package:fps_badge/fps_badge.dart';

Then warp your Main Widget with FPSBadge widget:

MaterialApp(
      title: 'FPS Monitor',
      home: Material(
        child: FPSBadge(
          visible: true,
          showChart: true,
          borderRadius: BorderRadius.all(Radius.circular(11)),
          child: MyHomePage(title: 'FPS Monitor'),
        ),
      ),
    );
0
likes
140
pub points
40%
popularity

Publisher

unverified uploader

A package to show FPS badge on screen.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on fps_badge