test_scan_barcode 1.0.0 copy "test_scan_barcode: ^1.0.0" to clipboard
test_scan_barcode: ^1.0.0 copied to clipboard

outdated

Sample flutter plugin

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  String? licenseKey;
  @override
  void initState() {
    super.initState();
  }

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(body: Center()),
    );
  }
}
0
likes
0
points
7
downloads

Publisher

unverified uploader

Weekly Downloads

Sample flutter plugin

Homepage

License

unknown (license)

Dependencies

core_scan, flutter, plugin_platform_interface

More

Packages that depend on test_scan_barcode

Packages that implement test_scan_barcode