finotescore 0.0.1-dev.1 copy "finotescore: ^0.0.1-dev.1" to clipboard
finotescore: ^0.0.1-dev.1 copied to clipboard

outdated

Detect and report bugs in Flutter based mobile apps.

example/lib/main.dart

import 'package:finotescore/finotescore.dart';
import 'package:finotescore/state_custom.dart';
import 'package:flutter/material.dart';



Widget? rootWidget;


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

    WidgetsFlutterBinding.ensureInitialized();
    Fn.init();
}



class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends FnState<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  void _incrementCounter() {
  }

  @override
  Widget build(BuildContext context) {
    super.build(context);
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running'),
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: _incrementCounter,
          tooltip: 'Increment',
          child: const Icon(Icons.add),
        ), // This trailing comma makes auto-formatting nicer for build methods.
      ),
    );
  }
}
0
likes
0
pub points
14%
popularity

Publisher

unverified uploader

Detect and report bugs in Flutter based mobile apps.

Homepage

License

unknown (LICENSE)

Dependencies

flutter, stack_trace

More

Packages that depend on finotescore