Skip to content

IDE with flutter plugin alleges dependency to be non-existent #5819

Closed
@Hu1buerger

Description

@Hu1buerger
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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions