profiler 0.5.4 copy "profiler: ^0.5.4" to clipboard
profiler: ^0.5.4 copied to clipboard

PlatformAndroid

A flutter integration for the contextual profiler library. By Fivvy.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:profiler_example/features/testing_view/testing_view.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
    // initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: SingleChildScrollView(
            child: TestingView(),
          ),
        ),
      ),
    );
  }
}
2
likes
115
points
3
downloads

Publisher

verified publishergetfivvy.com

Weekly Downloads

A flutter integration for the contextual profiler library. By Fivvy.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, flutter_svg, plugin_platform_interface

More

Packages that depend on profiler

Packages that implement profiler