keyboard_listener 1.0.0+2 copy "keyboard_listener: ^1.0.0+2" to clipboard
keyboard_listener: ^1.0.0+2 copied to clipboard

outdated

A new Flutter project.

keyboard_listener #

listener android keyboard status plugin.

Usage #

@override
  void initState() {
    super.initState();
  // isShow  true(keyboard show) false(keyboard hide)
  KeyBoardReceive.getKeyBoardStatus((isShow) {
      setState(() {
        
      });
    });
  }