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

A flutter package that will allow you to check your app performance using FPS Badge.

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.6 in your project's pubspec.yaml:

dependencies:
  show_fps: ^1.0.6

Usage #

Import show_fps in your dart file:

import 'package:show_fps/show_fps.dart';

Then warp your Main Widget with ShowFPS widget:

CupertinoApp(
      title: 'FPS Monitor',
      theme: CupertinoThemeData(
        brightness: Brightness.light,
      ),
      debugShowCheckedModeBanner: false,
      home: ShowFPS(
        alignment: Alignment.topRight,
        visible: true,
        showChart: false,
        borderRadius: BorderRadius.all(Radius.circular(11)),
        child: MyHomePage(title: 'FPS Monitor'),
      ),
    );
36
likes
160
pub points
89%
popularity

Publisher

verified publishermantreshkhurana.com

A flutter package that will allow you to check your app performance using FPS Badge.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on show_fps