FLUTTER ECOSYSTEM

huextrat/numeric_keyboard

Flutter plugin to display a simple numeric keyboard on Android & iOS

numeric_keyboard project cover
Stars
18
Forks
30
Last push (UTC)
Dec 15, 2023
Project status
Active
Hugo Extrat GitHub avatar
GITHUB User

Hugo Extrat ↗

Product Mobile Engineer @appchoose 🚀

@appchooseLyon, FranceOfficial website ↗
LanguagesC++CMakeDartSwiftCKotlinObjective-C

Packages published by this repository

Dependencies used

Dependency list 2 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

numeric_keyboard

pub package

A simple numeric keyboard widget

Installation

Add numeric_keyboard: ^1.1.0 in your pubspec.yaml dependencies. And import it:

import 'package:numeric_keyboard/numeric_keyboard.dart';

How to use

Simply create a NumericKeyboard widget and pass the required params:

NumericKeyboard(
  onKeyboardTap: _onKeyboardTap
)

_onKeyboardTap(String value) {
  setState(() {
    text = text + value;
  });
}

Params

NumericKeyboard(
  onKeyboardTap: _onKeyboardTap,
  textColor: Colors.red,
  rightButtonFn: () {
    setState(() {
      text = text.substring(0, text.length - 1);
    });
  },
  rightIcon: Icon(Icons.backspace, color: Colors.red,),
  leftButtonFn: () {
    print('left button clicked');
  },
  leftIcon: Icon(Icons.check, color: Colors.red,),
  mainAxisAlignment: MainAxisAlignment.spaceEvenly
)

For a more detail example please take a look at the example folder.

Example

Numeric keyboard:

https://raw.githubusercontent.com/huextrat/numeric_keyboard/master/example/screenshot.png

-

If something is missing, feel free to open a ticket or contribute!