Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced the way of using locales in format function #216

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

devmuaz
Copy link

@devmuaz devmuaz commented Jun 4, 2023

This PR should make using the locales easier, by pre-defining them by default statically in that the user won't make a mistake writing the wrong string locale.

So, instead of:

	final ago = format(date, locale: 'es');
	// or
	final agoShort = format(date, locale: 'es_short');

You can use this:

	final ago = format(date, locale: DefaultLocale.es);
	// or
	final agoShort = format(date, locale: DefaultLocaleShort.es);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant