currency_text_input_formatter 0.3.0 copy "currency_text_input_formatter: ^0.3.0" to clipboard
currency_text_input_formatter: ^0.3.0 copied to clipboard

outdated

Currency Text Input Formatter for Flutter. Use it easy and simple for your flutter app.

Currency Text Input Formatter #

pub package

Currency Text Input Formatter for Flutter. https://pub.dev/packages/currency_text_input_formatter

Installation #

Add pubspec.yaml #

dependencies:
  currency_text_input_formatter: ^0.2.0

Usage #

Basic #

import 'package:flutter/material.dart';

import 'package:currency_text_input_formatter/currency_text_input_formatter.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: TextField(
            inputFormatters: [CurrencyTextInputFormatter()],
            keyboardType: TextInputType.number,
          ),
        ),
      ),
    );
  }
}

Custom Options #

import 'package:flutter/material.dart';

import 'package:currency_text_input_formatter/currency_text_input_formatter.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: TextField(
            inputFormatters: [CurrencyTextInputFormatter(
              locale: 'ko',
              decimalDigits: 0,
              symbol: 'KRW(원) ',
            )],
            keyboardType: TextInputType.number,
          ),
        ),
      ),
    );
  }
}

Recommend Libraries #

Maintainer #

License #

MIT

232
likes
0
pub points
98%
popularity

Publisher

unverified uploader

Currency Text Input Formatter for Flutter. Use it easy and simple for your flutter app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on currency_text_input_formatter