lemberfpsmonitor 0.0.3+3 copy "lemberfpsmonitor: ^0.0.3+3" to clipboard
lemberfpsmonitor: ^0.0.3+3 copied to clipboard

A Flutter package for real-time FPS monitoring in applications. Track and analyze performance, identify issues, and optimize animations. Improve user experience with smooth-running applications. Easy [...]

FPS Monitor Package #

This Flutter package allows you to monitor the FPS (Frames Per Second) performance of your applications. It is inspired by the statsfl package and provides developers with the opportunity to visually track and improve application performance.

Features #

  • Real-time FPS monitoring
  • Visualize performance data with charts
  • Analyze animation performance
  • Identify and improve performance issues
  • Easy integration and usage

Usage #

import 'package:lemberfpsmonitor/lemberfpsmonitor.dart';

void main() {
  runApp(Padding(
    padding: const EdgeInsets.only(top: 40),
    child: FPSMonitor(
      showFPSChart: true,
      align: Alignment.topRight,
      onFPSChanged: (fps) {
        print("fps: $fps");
      },
      child: MaterialApp(
          debugShowCheckedModeBanner: false, home: Scaffold(body: MyApp())),
    ),
  ));
}

## License

- This project is licensed under the MIT License. For more information, please see the [LICENSE](LICENSE) file.

10
likes
0
pub points
63%
popularity

Publisher

unverified uploader

A Flutter package for real-time FPS monitoring in applications. Track and analyze performance, identify issues, and optimize animations. Improve user experience with smooth-running applications. Easy integration for Flutter projects.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on lemberfpsmonitor