number_to_word_thai 0.0.2 copy "number_to_word_thai: ^0.0.2" to clipboard
number_to_word_thai: ^0.0.2 copied to clipboard

Convert number to Thai words

Example #

//NumberToWordThai.convert(99);
return Obx(
      () => Column(
        children: [
          TextField(
            keyboardType: TextInputType.number,
            onChanged: (text) {
              if (text.isEmpty) {
                word.value = "";
              } else {
                word.value = NumberToWordThai.convert(int.parse(text));
              }
            },
          ),
          Text(
            word.value,
            style: const TextStyle(fontSize: 16),
          ),
        ],
      ),
    );

alt text

1
likes
140
pub points
54%
popularity

Publisher

unverified uploader

Convert number to Thai words

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on number_to_word_thai