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

A common utils for flutter.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  bool installed = false;

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    bool installed;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      installed = await HbFlutterUtil().isWechatInstalled();
    } on PlatformException {
      installed = false;
    }

    setState(() {
      this.installed = installed;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('wechat install $installed\n'),
        ),
      ),
    );
  }
}
0
likes
110
pub points
0%
popularity

Publisher

unverified uploader

A common utils for flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on hb_flutter_util