2019-03-28 00:38:16 +04:00
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
|
2020-03-19 11:50:42 +03:00
|
|
|
import 'package:virtual_keyboard_multi_language/virtual_keyboard_multi_language.dart';
|
2019-03-28 00:38:16 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
test('creates keyboard widget with Alphanumeric type', () {
|
|
|
|
final keyboard = VirtualKeyboard(
|
|
|
|
type: VirtualKeyboardType.Alphanumeric,
|
|
|
|
onKeyPress: () => null,
|
|
|
|
);
|
|
|
|
expect(keyboard.type, VirtualKeyboardType.Alphanumeric);
|
|
|
|
});
|
|
|
|
}
|