Currency Text Input Formatter for Flutter. https://pub.dev/packages/currency_text_input_formatter
dependencies:
currency_text_input_formatter: ^2.1.5
Add this code end of pubspec.yaml.
dependency_overrides:
intl: your intl package version
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,
),
),
),
);
}
}
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,
),
),
),
);
}
}
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,
),
),
),
);
}
}
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) {
// Built-in Methods
print(formatter.getFormattedValue()); // $ 2,000
print(formatter.getUnformattedValue()); // 2000.00
print(formatter.format('2000')); // $ 2,000
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(
title: const Text('Welcome to Flutter'),
),
body: Center(
child: TextField(
inputFormatters: <TextInputFormatter>[
formatter,
],
keyboardType: TextInputType.number,
),
),
),
);
}
}
- Confirm Dialog - Confirm Dialog Widget for Flutter(JS-LIKE).
- Prompt Dialog - Prompt Dialog Widget for Flutter(JS-LIKE).
- Alert Dialog - Alert Dialog Widget for Flutter(JS-LIKE).
MIT