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

This plugin helps to detect whether the user is using System Keyboard or Third party keyboard in Android device.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  String keyboardErrorStatusMsg = '';
  bool _isThirdPartyKeyboardUsing;

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String keyboardErrorStatusMsg = ' Failed to get the keyboard status';
    bool isThirdPartyKeyboardUsing;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      isThirdPartyKeyboardUsing =
          await KeyboardDetectionPlugin.isThirdPartyKeyboardUsing;
    } on PlatformException {
      keyboardErrorStatusMsg = 'Failed to get the keyboard status.';
    }

    // 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(() {
      _isThirdPartyKeyboardUsing = isThirdPartyKeyboardUsing;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Text(
                  'ThirdPartyKeyboardStatus: $_isThirdPartyKeyboardUsing\n$keyboardErrorStatusMsg'),
              RaisedButton(
                onPressed: () =>
                    {KeyboardDetectionPlugin.openKeyboardChangeManager},
                child: Text("Open Keyboard Manager"),
              )
            ],
          ),
        ),
      ),
    );
  }
}
2
likes
40
pub points
0%
popularity

Publisher

unverified uploader

This plugin helps to detect whether the user is using System Keyboard or Third party keyboard in Android device.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on keyboard_detection_plugin