currency_text_input_formatter 2.1.1 copy "currency_text_input_formatter: ^2.1.1" to clipboard
currency_text_input_formatter: ^2.1.1 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: ^2.1.1

Solving Intl package conflict #

Add this code end of pubspec.yaml.

dependency_overrides:
  intl: your intl package version

Usage #

Basic #

import 'package:currency_text_input_formatter/currency_text_input_formatter.dart';
import 'package:flutter/material.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,
          ),
        ),
      ),
    );
  }
}

With initialValue #

import 'package:currency_text_input_formatter/currency_text_input_formatter.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  final CurrencyTextInputFormatter _formatter = CurrencyTextInputFormatter();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Welcome to Flutter'),
        ),
        body: Center(
          child: TextFormField(
            initialValue: _formatter.format('2000'),
            inputFormatters: <TextInputFormatter>[_formatter],
            keyboardType: TextInputType.number,
          ),
        ),
      ),
    );
  }
}

Custom Options #

import 'package:currency_text_input_formatter/currency_text_input_formatter.dart';
import 'package:flutter/material.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: const Text('Welcome to Flutter'),
        ),
        body: Center(
          child: TextField(
            inputFormatters: <TextInputFormatter>[
              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