Closed
Description
import 'package:flutter_gen/gen_l10n/app_localizations.dart'; // Android studio alleges this to be non existent
import 'package:flutter_localizations/flutter_localizations.dart';
class App extends StatelessWidget{
[....]
@override
Widget build(BuildContext context) {
return MaterialApp(
restorationScopeId: 'app',
localizationsDelegates: const [
AppLocalizations.delegate, // the usage of the import
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: const [
Locale('en', ''), // English, no country code
],
onGenerateTitle: (BuildContext context) => AppLocalizations.of(context)!.appTitle,
theme: ThemeData.dark(),
[...]
);
}
}
TL;DR: Android studio / IntelliJ believes an import import 'package:flutter_gen/gen_l10n/app_localizations.dart';
to be non-existent. The dart analysis window also shows the error.
But $flutter analyse
disagrees and flutter run
also disagrees and starts compiling and executing the code without issue.
For more info head over to flutter/flutter#91756
Metadata
Metadata
Assignees
Labels
No labels