Skip to content

warlesoncandido/IOSKeyBoardAction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Features

Easyly show an action button for the user above the iOS keyboard.

Depend on it

Add the package on the pubspec.yaml

dependencies:
  ios_keyboard_action: ^0.0.2

Import it

  import 'package:ios_keyboard_action/ios_keyboard_action.dart';

Use it

IOSKeyboardAction(
  label: 'Next field',
  focusNode: focusNode,
  focusActionType: FocusActionType.next,
  onTap: () => _showModal(context),
  child: TextField(
    decoration: const InputDecoration(
      labelText: 'Type something',
    ),
    focusNode: focusNode,
    keyboardType: TextInputType.number,
  ),
),

About

package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors