v2.3.0
currency_text_input_formatter
Flutter 的貨幣文字輸入格式化程式。在您的 Flutter 應用中輕鬆簡單地使用它。
290喜歡 11.2萬近 30 天下載155Pub 分數
AndroidiOSWebmacOSWindowsLinux
適用於 Flutter 的貨幣文字輸入格式化程式。
以下為英文專案原文快照,最新內容請造訪 GitHub。
Currency Text Input Formatter for Flutter. https://pub.dev/packages/currency_text_input_formatter
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.currency()],
// inputFormatters: [CurrencyTextInputFormatter.simpleCurrency()], < for simple
// inputFormatters: [CurrencyTextInputFormatter()], < for basic
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: MyFormField(),
),
),
);
}
}
class MyFormField extends StatefulWidget {
const MyFormField({ super.key });
@override
State<MyFormField> createState() => _MyFormFieldState();
}
class _MyFormFieldState extends State<MyFormField> {
final CurrencyTextInputFormatter _formatter = CurrencyTextInputFormatter.currency();
@override
Widget build(BuildContext context) {
return TextFormField(
initialValue: _formatter.formatString('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.currency(
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 {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(
title: const Text('Welcome to Flutter'),
),
body: Center(
child: MyFormField(),
),
),
);
}
}
class MyFormField extends StatefulWidget {
const MyFormField({ super.key });
@override
State<MyFormField> createState() => _MyFormFieldState();
}
class _MyFormFieldState extends State<MyFormField> {
final CurrencyTextInputFormatter _formatter = CurrencyTextInputFormatter.currency();
@override
Widget build(BuildContext context) {
// Built-in Methods
print(_formatter.getFormattedValue()); // $ 2,000
print(_formatter.getUnformattedValue()); // 2000.00
print(_formatter.formatString('2000')); // $ 2,000
print(_formatter.formatDouble(20.00)); // $ 20
return TextFormField(
inputFormatters: <TextInputFormatter>[_formatter],
keyboardType: TextInputType.number,
);
}
}
MIT