mirror of
https://github.com/spotiflacapp/SpotiFLAC-Mobile.git
synced 2026-06-01 03:15:17 +07:00
Strip doc comments, section dividers, HTML comments, and Flutter template boilerplate that add no informational value. No logic or behavior changes.
8 lines
276 B
Dart
8 lines
276 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:spotiflac_android/l10n/app_localizations.dart';
|
|
|
|
export 'package:spotiflac_android/l10n/app_localizations.dart';
|
|
|
|
extension AppLocalizationsX on BuildContext {
|
|
AppLocalizations get l10n => AppLocalizations.of(this);
|
|
}
|