qr_code_scanner2 0.0.6 copy "qr_code_scanner2: ^0.0.6" to clipboard
qr_code_scanner2: ^0.0.6 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:qr_code_scanner2_example/scanViewDemo.dart';

void main() {
  runApp(MaterialApp(home: MyApp()));
}

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: InkWell(
            onTap: () {
              Navigator.push(context,
                  MaterialPageRoute(builder: (context) => ScanViewDemo()));
            },
            child: Container(
              width: 100,
              height: 100,
              child: Text('QUet QR'),
            ),
          ),
        ),
      ),
    );
  }
}
2
likes
0
pub points
36%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flustars, flutter, image_picker, sp_util

More

Packages that depend on qr_code_scanner2