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

outdated

Reduce plugin maintenance burden for plugins that have to maintain platform object instances in memory.

example/lib/main.dart

import 'package:flutter/material.dart';

// ignore: implementation_imports
import 'package:reference/src/template/template.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!')),
        floatingActionButton: FloatingActionButton(
          onPressed: () async {
            final ClassTemplate classTemplate = ClassTemplate(44);
            final String result = await classTemplate.methodTemplate('Hello,');
            print(result);
          },
          child: Icon(Icons.ac_unit),
        ),
      ),
    );
  }
}
2
likes
0
pub points
53%
popularity

Publisher

unverified uploader

Reduce plugin maintenance burden for plugins that have to maintain platform object instances in memory.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, quiver, uuid

More

Packages that depend on reference