numeric_to_word 0.0.4 copy "numeric_to_word: ^0.0.4" to clipboard
numeric_to_word: ^0.0.4 copied to clipboard

Numeric to word for English Lao Thai Chinese Vietnamese

numeric_to_word #

Numeric to word for English Lao Thai Chinese Vietnamese

install with flutter #

flutter pub add numeric_to_word

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--- #

Buy Me A Coffee

1
likes
130
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

Numeric to word for English Lao Thai Chinese Vietnamese

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on numeric_to_word