l10n_extensions.dart 366 B

123456789101112
  1. // Copyright 2019 The FlutterCandies author. All rights reserved.
  2. // Use of this source code is governed by an Apache license that can be found
  3. // in the LICENSE file.
  4. import 'package:flutter/widgets.dart';
  5. import '../l10n/gen/app_localizations.dart';
  6. extension BuildContextExtension on BuildContext {
  7. AppLocalizations get l10n => AppLocalizations.of(this)!;
  8. }