Fix lint warnings
This commit is contained in:
parent
944ef2e564
commit
9f2a66e0ef
3 changed files with 0 additions and 82 deletions
|
@ -1,78 +0,0 @@
|
||||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'intl/messages_all.dart';
|
|
||||||
|
|
||||||
// **************************************************************************
|
|
||||||
// Generator: Flutter Intl IDE plugin
|
|
||||||
// Made by Localizely
|
|
||||||
// **************************************************************************
|
|
||||||
|
|
||||||
// ignore_for_file: non_constant_identifier_names, lines_longer_than_80_chars
|
|
||||||
// ignore_for_file: join_return_with_assignment, prefer_final_in_for_each
|
|
||||||
// ignore_for_file: avoid_redundant_argument_values, avoid_escaping_inner_quotes
|
|
||||||
|
|
||||||
class S {
|
|
||||||
S();
|
|
||||||
|
|
||||||
static S? _current;
|
|
||||||
|
|
||||||
static S get current {
|
|
||||||
assert(_current != null,
|
|
||||||
'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.');
|
|
||||||
return _current!;
|
|
||||||
}
|
|
||||||
|
|
||||||
static const AppLocalizationDelegate delegate = AppLocalizationDelegate();
|
|
||||||
|
|
||||||
static Future<S> load(Locale locale) {
|
|
||||||
final name = (locale.countryCode?.isEmpty ?? false)
|
|
||||||
? locale.languageCode
|
|
||||||
: locale.toString();
|
|
||||||
final localeName = Intl.canonicalizedLocale(name);
|
|
||||||
return initializeMessages(localeName).then((_) {
|
|
||||||
Intl.defaultLocale = localeName;
|
|
||||||
final instance = S();
|
|
||||||
S._current = instance;
|
|
||||||
|
|
||||||
return instance;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
static S of(BuildContext context) {
|
|
||||||
final instance = S.maybeOf(context);
|
|
||||||
assert(instance != null,
|
|
||||||
'No instance of S present in the widget tree. Did you add S.delegate in localizationsDelegates?');
|
|
||||||
return instance!;
|
|
||||||
}
|
|
||||||
|
|
||||||
static S? maybeOf(BuildContext context) {
|
|
||||||
return Localizations.of<S>(context, S);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
|
||||||
const AppLocalizationDelegate();
|
|
||||||
|
|
||||||
List<Locale> get supportedLocales {
|
|
||||||
return const <Locale>[
|
|
||||||
Locale.fromSubtags(languageCode: 'en'),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
bool isSupported(Locale locale) => _isSupported(locale);
|
|
||||||
@override
|
|
||||||
Future<S> load(Locale locale) => S.load(locale);
|
|
||||||
@override
|
|
||||||
bool shouldReload(AppLocalizationDelegate old) => false;
|
|
||||||
|
|
||||||
bool _isSupported(Locale locale) {
|
|
||||||
for (var supportedLocale in supportedLocales) {
|
|
||||||
if (supportedLocale.languageCode == locale.languageCode) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +1,4 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
import 'package:ente_auth/core/configuration.dart';
|
import 'package:ente_auth/core/configuration.dart';
|
||||||
|
@ -23,7 +22,6 @@ import 'package:ente_auth/utils/navigation_util.dart';
|
||||||
import 'package:ente_auth/utils/toast_util.dart';
|
import 'package:ente_auth/utils/toast_util.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:logging/logging.dart';
|
import 'package:logging/logging.dart';
|
||||||
import 'package:uuid/uuid.dart';
|
|
||||||
|
|
||||||
class SecuritySectionWidget extends StatefulWidget {
|
class SecuritySectionWidget extends StatefulWidget {
|
||||||
const SecuritySectionWidget({Key? key}) : super(key: key);
|
const SecuritySectionWidget({Key? key}) : super(key: key);
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import "dart:convert";
|
|
||||||
import "dart:typed_data";
|
import "dart:typed_data";
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
@ -27,7 +26,6 @@ import "package:photos/utils/crypto_util.dart";
|
||||||
import "package:photos/utils/dialog_util.dart";
|
import "package:photos/utils/dialog_util.dart";
|
||||||
import "package:photos/utils/navigation_util.dart";
|
import "package:photos/utils/navigation_util.dart";
|
||||||
import "package:photos/utils/toast_util.dart";
|
import "package:photos/utils/toast_util.dart";
|
||||||
import "package:uuid/uuid.dart";
|
|
||||||
|
|
||||||
class SecuritySectionWidget extends StatefulWidget {
|
class SecuritySectionWidget extends StatefulWidget {
|
||||||
const SecuritySectionWidget({Key? key}) : super(key: key);
|
const SecuritySectionWidget({Key? key}) : super(key: key);
|
||||||
|
|
Loading…
Reference in a new issue