intl library
This library provides internationalization and localization. This includes message formatting and replacement, date and number formatting and parsing, and utilities for working with Bidirectional text.
Installing
Use pub to install this package. Add the following to your pubspec.yaml
file.
dependencies:
intl: any
Then run pub install
.
For more information, see the intl package on pub.dartlang.org.
For things that require locale or other data, there are multiple different ways of making that data available, which may require importing different libraries. See the class comments for more details.
There is also a simple example application that can be found in the
example/basic
directory.