reference 0.0.2 copy "reference: ^0.0.2" to clipboard
reference: ^0.0.2 copied to clipboard

outdated

A library for building Flutter plugins that want to maintain access to object instances on separate threads/processes.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(child: Text('Hello, World!')),
      ),
    );
  }
}
2
likes
0
pub points
46%
popularity

Publisher

unverified uploader

A library for building Flutter plugins that want to maintain access to object instances on separate threads/processes.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, quiver, uuid

More

Packages that depend on reference