qr_flutter_wc 0.0.3 copy "qr_flutter_wc: ^0.0.3" to clipboard
qr_flutter_wc: ^0.0.3 copied to clipboard

A WalletConnect's small modification of QR.FLUTTER repository https://github.com/theyakka/qr.flutter to have the QR Code shown as needed per our requirements

example/lib/main.dart

/*
 * QR.Flutter
 * Copyright (c) 2019 the QR.Flutter authors.
 * See LICENSE for distribution and usage details.
 */

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

import 'main_screen.dart';

void main() => runApp(ExampleApp());

/// The example application class
class ExampleApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    SystemChrome.setSystemUIOverlayStyle(
      const SystemUiOverlayStyle(
        statusBarColor: Colors.white,
        statusBarIconBrightness: Brightness.dark,
        systemNavigationBarColor: Colors.white,
        systemNavigationBarIconBrightness: Brightness.dark,
      ),
    );
    return MaterialApp(
      title: 'QR.Flutter',
      theme: ThemeData.light(),
      debugShowCheckedModeBanner: false,
      home: MainScreen(),
    );
  }
}
1
likes
140
pub points
64%
popularity

Publisher

verified publisherwalletconnect.com

A WalletConnect's small modification of QR.FLUTTER repository https://github.com/theyakka/qr.flutter to have the QR Code shown as needed per our requirements

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, qr

More

Packages that depend on qr_flutter_wc