indigitall_hms_flutter_plugin 2.1.3 copy "indigitall_hms_flutter_plugin: ^2.1.3" to clipboard
indigitall_hms_flutter_plugin: ^2.1.3 copied to clipboard

outdated

With the indigitall hms tool, you will be able to capture and communicate with the visitors of your website, the users of your app or your clients in general.

example/lib/main.dart

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


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 _platformVersion = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {

    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
0
likes
0
points
19
downloads

Publisher

verified publisherindigitall.com

Weekly Downloads

With the indigitall hms tool, you will be able to capture and communicate with the visitors of your website, the users of your app or your clients in general.

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on indigitall_hms_flutter_plugin

Packages that implement indigitall_hms_flutter_plugin