Skip to content

Commit 0be1f5a

Browse files
committed
Update README.
1 parent 90bca26 commit 0be1f5a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,22 @@ First of all, add the package to your dependencies and run `flutter pub get`.
1212
dependencies:
1313
built_in_keyboard:
1414
git:
15-
url: https://github.com/Open-Segmentation-Systems/BuiltInKeyboard.git
15+
url: https://github.com/Open-pi/builtinkeyboard.git
1616
ref: main
1717
```
1818
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.
2020

2121
Here are some attributes that you could change. keep in mind that the controller is required to make the keyboard work correctly.
2222
```dart
2323
BuiltInKeyboard(
2424
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
2931
)
3032
```
3133
### Additional options and flags

0 commit comments

Comments
 (0)