flutter_introduction_tooltip 0.0.4 copy "flutter_introduction_tooltip: ^0.0.4" to clipboard
flutter_introduction_tooltip: ^0.0.4 copied to clipboard

A new Flutter plugin to show introduction tooltip for first time app open

example/lib/main.dart

import 'dart:async';

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

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

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

class _MyAppState extends State<MyApp>{
  String _platformVersion = 'Unknown';
  GlobalKey globalKey = GlobalKey();
  GlobalKey globalKey2 = GlobalKey();
  bool isShowing = false;
  bool isShowing2 = false;

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

  void popAndNextTutorial(BuildContext context) {
    Navigator.pop(context);
    showTutorial2(context);
  }

  void showTutorial(BuildContext context) async {
    if (!isShowing) {
      new Timer(Duration(seconds: 1), () async {
        try {
          FlutterIntroductionTooltip.showTopTutorialOnWidget(
              context,
              globalKey,
              Colors.blue,
                  () => popAndNextTutorial(context),
              "MAMA",
              "MAMA IS A LOREM IPSUM",
              "ALRIGHT");
          print("SHOWING");
          setState(() {
            isShowing = true;
          });
        } catch (e) {
          print("ERROR $e");
        }
      });
    }
  }

  void showTutorial2(BuildContext context) async {
    if (!isShowing2) {
      new Timer(Duration(milliseconds: 500), () async {
        try {
          FlutterIntroductionTooltip.showBottomTutorialOnWidget(
              context,
              globalKey2,
              Colors.blue,
                  () => Navigator.pop(context),
              "MAMA",
              "MAMA IS A LOREM IPSUM",
              "ALRIGHT");
          print("SHOWING");
          setState(() {
            isShowing2 = true;
          });
        } catch (e) {
          print("ERROR $e");
        }
      });
    }
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      platformVersion = await FlutterIntroductionTooltip.platformVersion;
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // 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;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Builder(
            builder: (BuildContext context) {
              showTutorial(context);
              return Stack(
                children: <Widget> [
                  Container(
                    width: MediaQuery
                        .of(context)
                        .size
                        .width,
                    alignment: Alignment.bottomCenter,
                    child: Container(
                      color: Colors.blue,
                      key: globalKey,
                      child: Text(
                        'Running on: $_platformVersion\n',
                      ),
                    ),
                  ),
                  Container(
                    width: MediaQuery
                        .of(context)
                        .size
                        .width,
                    alignment: Alignment.topCenter,
                    child: Container(
                      color: Colors.blue,
                      key: globalKey2,
                      child: Text(
                        'Running on: $_platformVersion\n',
                      ),
                    ),
                  )
                ],
              );
            }
        ),
      ),
    );
  }
}
16
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter plugin to show introduction tooltip for first time app open

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_introduction_tooltip