soft_keyboard_dismisser 0.0.3 copy "soft_keyboard_dismisser: ^0.0.3" to clipboard
soft_keyboard_dismisser: ^0.0.3 copied to clipboard

A simple Flutter package to dismiss the keyboard when click outside the input field..

soft_keyboard_dismisser #

A new flutter plugin project.

Getting Started #

Add dependency #

dependencies:
  soft_keyboard_dismisser: ^0.0.1

Super simple to use #

import 'package:soft_keyboard_dismisser/soft_keyboard_dismisser.dart';
...
 Container(
    child:
    SoftKeyboardDismisser(false, "Text here...", 10, ontextChange),
)

soft keyboard dismisser #

Use SoftKeyboardDismisser class and it has 4 parameters

  1. Enable password field,
true/false
  1. Placeholder text.
Placeholder message 
  1. Padding value.
Input field padding value 
  1. Callback function.Get value from input field
 onTextChange(val){
     print(val);// print text whatever you typed in text field.
 }
1
likes
115
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

A simple Flutter package to dismiss the keyboard when click outside the input field..

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on soft_keyboard_dismisser

Packages that implement soft_keyboard_dismisser