Add system channel to access the localization plugin. (#76847)

This commit is contained in:
Lau Ching Jun 2021-02-26 14:59:41 -08:00 committed by GitHub
parent dc1cb29701
commit 75ad491f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -344,4 +344,20 @@ class SystemChannels {
'flutter/deferredcomponent', 'flutter/deferredcomponent',
StandardMethodCodec(), StandardMethodCodec(),
); );
/// A JSON [MethodChannel] for localization.
///
/// The following outgoing methods are defined for this channel (invoked using
/// [OptionalMethodChannel.invokeMethod]):
///
/// * `Localization.getStringResource`: Obtains the native string resource
/// for a specific locale. The argument is a [Map] with two keys, `key`
/// giving a [String] which the resource is defined with, and an optional
/// `locale` which is a [String] containing the BCP47 locale identifier of
/// the locale requested. See [Locale.toLanguageTag]. When `locale` is not
/// specified, the current system locale is used instead.
static const MethodChannel localization = OptionalMethodChannel(
'flutter/localization',
JSONMethodCodec(),
);
} }