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

outdated

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

example/main.dart

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,
          ),
        ),
      ),
    );
  }
}
277
likes
40
points
156k
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)

License

MIT (license)

Dependencies

flutter, intl

More

Packages that depend on currency_text_input_formatter