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

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(() {
        
      });
    });
  }