mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

The following changes are made by this PR: * Translation bundles now implement MaterialLocalizations directly, and are public so that they can be directly extended. * The list of supported languages is now a generated constant. * The icuShortTimePattern/TimeOfDayFormat values are now pre-parsed. * Various other changes for consistency with the style guide and the rest of the codebase, e.g. the class names don't use `_`, the `path` library is imported as such, more dartdocs, fewer `// ignore`s, validation using exceptions. This reduces our technical debt benchmark.
11 lines
361 B
Dart
11 lines
361 B
Dart
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Localizations for the Flutter library
|
|
library flutter_localizations;
|
|
|
|
export 'src/l10n/localizations.dart';
|
|
export 'src/material_localizations.dart';
|
|
export 'src/widgets_localizations.dart';
|