profiler 2.0.3-beta.2 copy "profiler: ^2.0.3-beta.2" to clipboard
profiler: ^2.0.3-beta.2 copied to clipboard

minor updates

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(),
          ),
        ),
      ),
    );
  }
}