flutter_secure_keyboard
Mobile secure keyboard to prevent KeyLogger attack and screen capture.
Screenshots
Alphanumeric |
Numeric |
 |
 |
Getting started
To use this plugin, add flutter_secure_keyboard
as a dependency in your pubspec.yaml file. For example:
Examples
WithSecureKeyboard
Parameter |
Description |
controller * |
Controller for controlling the secure keyboard. |
child * |
A widget to have a secure keyboard. |
keyboardHeight |
Parameters to set the keyboard height. |
backgroundColor |
Parameters to set the keyboard background color. |
stringKeyColor |
Parameters to set keyboard string key(alphanumeric, numeric..) color. |
actionKeyColor |
Parameters to set keyboard action key(shift, backspace, clear..) color. |
confirmKeyColor |
Parameters to set keyboard confirm key color. |
keyTextStyle |
Parameters to set keyboard key text style. |
inputTextStyle |
Parameters to set keyboard input text style. |
SecureKeyboardController
Function |
Description |
isShowing |
Whether the secure keyboard is open. |
type |
Indicates the secure keyboard type. |
show |
Show a secure keyboard. |
hide |
Hide a secure keyboard. |
SecureKeyboardController.show()
Parameter |
Description |
type * |
Specifies the secure keyboard type. |
textFieldFocusNode |
The FocusNode that will receive focus on. |
initText |
Sets the initial value of the input text. |
hintText |
The hint text to display when the input text is empty. |
inputTextLengthSymbol |
Sets the symbol to use when displaying the input text length. |
confirmKeyText |
Sets the confirm key text. |
clearKeyText |
Sets the clear key text. |
obscuringCharacter |
Sets the secure character to hide the input text. |
maxLength |
Sets the maximum length of text that can be entered. |
alwaysCaps |
Whether to always display uppercase characters. |
obscureText |
Whether to hide input text as secure characters. |
onKeyPressed |
Called when the key is pressed. |
onCharCodesChanged |
Called when the character codes changed. |
onConfirmKeyPressed * |
Called when the confirm key is pressed. |
onCloseKeyPressed |
Called when the close key is pressed. |
GitHub
https://github.com/Dev-hwang/flutter_secure_keyboard