@@ -12,20 +12,22 @@ First of all, add the package to your dependencies and run `flutter pub get`.
12
12
dependencies :
13
13
built_in_keyboard :
14
14
git :
15
- url : https://github.com/Open-Segmentation-Systems/BuiltInKeyboard .git
15
+ url : https://github.com/Open-pi/builtinkeyboard .git
16
16
ref : main
17
17
` ` `
18
18
19
- With the ` builtInKeyboard ` widget, you can easily change the layout of the keyboard, the look and feel of the keys, etc.
19
+ With the ` BuiltInKeyboard ` widget, you can easily change the layout of the keyboard, the look and feel of the keys, etc.
20
20
21
21
Here are some attributes that you could change. keep in mind that the controller is required to make the keyboard work correctly.
22
22
` ` ` dart
23
23
BuiltInKeyboard(
24
24
controller: this.textController, // required
25
- layoutType: 'EN', // Only QWERTY and AZERTY are currently available
26
- enableUppercaseAll: true, // makes the keys uppercase
27
- borderRadius: BorderRadius.circular(8.0), // changes the border radius of the key
28
- letterStyle: TextStyle(fontSize: 25, color: Colors.black) // styles the text inside a key
25
+ layoutType: 'EN', // required, Only QWERTY and AZERTY are currently available
26
+ enableSpaceBar: true, // optional, add a spacebar
27
+ enableBackSpace: true, // optional, add a backspace button
28
+ enableCapsLock: true, // optional, add a Caps Lock button
29
+ borderRadius: BorderRadius.circular(8.0), // changes the border radius of the keys
30
+ letterStyle: TextStyle(fontSize: 25, color: Colors.black) // styles the text inside the keys
29
31
)
30
32
` ` `
31
33
# ## Additional options and flags
0 commit comments