0 purchases
soft keyboard dismisser
soft_keyboard_dismisser #
A new flutter plugin project.
Getting Started #
Add dependency #
dependencies:
soft_keyboard_dismisser: ^0.0.1
copied to clipboard
Super simple to use #
import 'package:soft_keyboard_dismisser/soft_keyboard_dismisser.dart';
...
Container(
child:
SoftKeyboardDismisser(false, "Text here...", 10, ontextChange),
)
copied to clipboard
soft keyboard dismisser #
Use SoftKeyboardDismisser class and it has 4 parameters
Enable password field,
true/false
copied to clipboard
Placeholder text.
Placeholder message
copied to clipboard
Padding value.
Input field padding value
copied to clipboard
Callback function.Get value from input field
onTextChange(val){
print(val);// print text whatever you typed in text field.
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.