[infra_ui] Remove deprecated files

This commit is contained in:
Jaylen Bian 2021-07-20 11:21:43 +08:00
parent b547e94273
commit c4ae215746

View File

@ -1,16 +0,0 @@
library keyboard_web;
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
import 'package:keyboard_platform_interface/keyboard_platform_interface.dart';
class KeyboardPlugin extends KeyboardPlatform {
static void registerWith(Registrar registrar) {
KeyboardPlatform.instance = KeyboardPlugin();
}
@override
Stream<bool> get onKeyboardChange async* {
// suppose that keyboard won't show in web side
yield false;
}
}