Skip to content

Commit 094ee4f

Browse files
authored
fix: untrack build artefacts
2 parents 8b3c990 + 8dd1a47 commit 094ee4f

File tree

4 files changed

+22
-29
lines changed

4 files changed

+22
-29
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,9 @@ example/pubspec.lock
3030
build/
3131
.flutter-plugins
3232
.flutter-plugins-dependencies
33-
test/failures
33+
test/failures
34+
.vscode/settings.json
35+
**/GeneratedPluginRegistrant.swift
36+
**/generated_plugin_registrant.cc
37+
**/generated_plugin_registrant.h
38+
**/generated_plugins.cmake

example/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ migrate_working_dir/
3232
.pub-cache/
3333
.pub/
3434
/build/
35+
.vscode/settings.json
36+
**/GeneratedPluginRegistrant.swift
37+
**/generated_plugin_registrant.cc
38+
**/generated_plugin_registrant.h
39+
**/generated_plugins.cmake
3540

3641
# Symbolication related
3742
app.*.symbols

example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 16 deletions
This file was deleted.

lib/src/ui/l10n/sec_locale.dart

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import 'sec_locale_en.dart';
6363
/// property.
6464
abstract class SecLocalizations {
6565
SecLocalizations(String locale)
66-
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
66+
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
6767

6868
final String localeName;
6969

@@ -86,16 +86,16 @@ abstract class SecLocalizations {
8686
/// of delegates is preferred or required.
8787
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
8888
<LocalizationsDelegate<dynamic>>[
89-
delegate,
90-
GlobalMaterialLocalizations.delegate,
91-
GlobalCupertinoLocalizations.delegate,
92-
GlobalWidgetsLocalizations.delegate,
93-
];
89+
delegate,
90+
GlobalMaterialLocalizations.delegate,
91+
GlobalCupertinoLocalizations.delegate,
92+
GlobalWidgetsLocalizations.delegate,
93+
];
9494

9595
/// A list of this localizations delegate's supported locales.
9696
static const List<Locale> supportedLocales = <Locale>[
9797
Locale('de'),
98-
Locale('en'),
98+
Locale('en')
9999
];
100100

101101
/// No description provided for @successfullyVerified.
@@ -258,9 +258,8 @@ SecLocalizations lookupSecLocalizations(Locale locale) {
258258
}
259259

260260
throw FlutterError(
261-
'SecLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
262-
'an issue with the localizations generation tool. Please file an issue '
263-
'on GitHub with a reproducible sample app and the gen-l10n configuration '
264-
'that was used.',
265-
);
261+
'SecLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
262+
'an issue with the localizations generation tool. Please file an issue '
263+
'on GitHub with a reproducible sample app and the gen-l10n configuration '
264+
'that was used.');
266265
}

0 commit comments

Comments
 (0)