plugin_constant.dart 331 B

123456789
  1. /// 插件常量
  2. class PluginConstant {
  3. /// MethodChannel通道名称,和Flutter端要一一对应
  4. static const flutterMethodChannelName = "keyboard_android";
  5. /// 默认键盘改变事件,EventChannel通道名称
  6. static const flutterDefaultKeyboardEventChannelName =
  7. "keyboard_android/event/default_keyboard";
  8. }