ordinal_formatter 0.1.4 ordinal_formatter: ^0.1.4 copied to clipboard
Ordinal formatter is a simple tool to covert numbers into their localised ordinal form. Example "2" -> "2nd"
ordinal_formatter #
A simple flutter plugin to convert numbers into ordinal string using the built in native iOS and android libraries.
Example:
final ordinalString = await OrdinalFormatter().format(2) ?? ''; // ordinalString value: '2nd'
Usage #
import 'package:ordinal_formatter/ordinal_formatter.dart';
String ordinalNumber;
try {
ordinalNumber = await OrdinalFormatter().format(2, 'en_US') ?? 'Unknown number';
} on PlatformException catch (e) {
ordinalNumber = 'Formatting failed: $e';
}
Features #
- ✅ iOS Support
- ✅ Android Support
- ✅ Web support