Categoría: Input

Categoría agregada por el Plugin WPeMatico

  • A Flutter package provides some implementations of Text Input Formatter

    PatternFormatter A Flutter package provides some implementations of Text Input Formatter that format input with pre-defined patterns. How to use import ‘package:pattern_formatter/pattern_formatter.dart’; Thousands grouping Integer number: TextField( keyboardType: TextInputType.number, inputFormatters: [ ThousandsFormatter() ], ) Decimal number: TextField( keyboardType: TextInputType.number, inputFormatters: [ ThousandsFormatter(allowFraction: true) ], ) Card number grouping TextField( keyboardType: TextInputType.number, inputFormatters: [ CreditCardFormatter(), ], ) Date format TextField( keyboardType: …

  • PIN input field widget for Flutter with paste from clipboard functionality

    PinPut This widget keeps whole width of parent widget and layouts textfields in a way to create PIN code input field look it accepts string of any length and calls the onSubmit method when all fields are filled. Properties Property Default/Meaning onSubmit @required Function fieldsCount @required number isTextObscure false textStyle TextStyle(fontSize: 30) spaceBetween space between fields Default: 10.0 clearButtonIcon Icon(Icons.backspace, …

  • A Flutter package for iOS and Android for showing passcode input screen

    Flutter – Passcode Lock Screen A Flutter package for iOS and Android for showing passcode input screen, similar to Native iOS. Installation First add passcode_screen as a dependency in your pubspec.yaml file. Then use import import ‘package:passcode_screen/passcode_screen.dart’; What can it do for you? Create a beautiful passcode lock view simply. PasscodeScreen( title: title, passwordEnteredCallback: _onPasscodeEntered, cancelLocalizedText: ‘Cancel’, deleteLocalizedText: ‘Delete’, shouldTriggerVerification: …

  • PIN input field widget for flutter

    PinPut 100% Dart based and lightweight PIN input field widget for Flutter. This widget keeps whole width of parent widget and layouts textfields in a way to create PIN code input field look it accepts string of any length and calls the onSubmit method when all fields are filled. Installation Install the latest version from pub. Properties Property Default/Meaning onSubmit …

  • Flutter widget packages that can be used to input values in the form of currencies

    MoneyTextFormField MoneyTextFormField is one of the flutter widget packages that can be used to input values in the form of currencies, by displaying the output format in realtime. This widget is based on the FlutterMoneyFormatter package which has a very powerful ability to do currency formatting. Install For complete steps in installing MoneyTextFormField you can see in the Installation Guide. …

  • A Dart widget for entering international telephone numbers with dropdown

    Dart Tel Input A Dart widget for entering international telephone numbers with dropdown searching input countries Getting Started Add the following line in your pubspec file tel_input: Get the package by running the command flutter packages get Include the widget in your dart file import ‘package:tel_input/tel_input.dart’; Example Usage: TelInput( dialCode: ‘+852’, includeDialCode: true, onChange: (String phoneNumber) => print(‘phoneNumber: $phoneNumber’), ) …

  • A Flutter package that help you create a verification input

    flutter_verification_code_input Verify code input. You can create a verify code input. Installing dependencies: flutter: sdk: flutter flutter_verification_code_input: git: url: git://github.com/tinylife-io/flutter_verification_code_input.git import’package:flutter_verification_code_input/flutter_verification_code_input.dart’; Usage new VerificationCodeInput( keyboardType: TextInputType.number, length: 4, onCompleted: (String value) { //… print(value); }, ) Showcase GitHub

  • A Flutter widget for inputting content with a fixed length

    code_input A Flutter widget for inputting content with a fixed length, visually treating each character as a separate segment. Usage This is a small example: CodeInput( length: 4, keyboardType: TextInputType.number, builder: CodeInputBuilders.lightCircle(), onFilled: (value) => print(‘Your input is $value.’), ) For more information about the properties, have a look at the API reference. GitHub