numeric_to_word 0.0.1
numeric_to_word: ^0.0.1 copied to clipboard
Numeric to word for English Lao Thai Chinese Vietnamese
numeric_to_word #
Numeric to word for English Lao Thai Chinese Vietnamese
Getting Started #
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
install with flutter #
flutter pub add numeric_to_word
flutter pub get
Then You have to import the package to your project #
import 'package:numeric_to_word/numeric_to_word.dart';
Usage #
You can call the widget and get the response after the KYC Scan. Please find the example Code:
Center(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
TextField(
controller: _controller,
onChanged: (value) {
setState(() {
// _controller.text = value;
});
},
keyboardType: TextInputType.number,
decoration:
const InputDecoration(label: Text('Input number'))),
SelectableText(
'English: ${NumericToWord.numericToEnglish(_controller.text)}'),
SelectableText(
'Lao: ${NumericToWord.numericToLao(_controller.text)}'),
SelectableText(
'Thai: ${NumericToWord.numericToThai(_controller.text)}'),
SelectableText(
'Vietnamese: ${NumericToWord.numericToVietnamese(_controller.text)}'),
SelectableText(
'Chinese: ${NumericToWord.numericToChinese(_controller.text)}'),
],
),
),
)
Donation - Support Me #
Lao QR #
Binance - BTC #
---Or--- #
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.