keyboard_info 0.2.0
keyboard_info: ^0.2.0 copied to clipboard
Provides API for querying information about the system's keyboard.
Keyboard Info #
This Flutter plugin provides API for querying information about the system's keyboard.
Usage #
import 'package:keyboard_info/keyboard_info.dart';
void main() async {
final KeyboardInfo info = await getKeyboardInfo();
print(info.layout); // "fi"
print(info.variant); // "mac"
}
Platform Support #
| Platform | Layout | Variant | Notes |
|---|---|---|---|
| Android | ✔ | ❌ | |
| iOS | ✔ | ❌ | |
| Linux | ✔ | ✔ |
|
| macOS | ✔ | ✔ |
|
| Web | ❌ | ❌ |
|
| Windows | ✔ | ❌ |