2
respostas

Módulo desatualizado

Nada do que está nesse módulo funcionou no meu teste.

{ "resource": "/Volumes/Developer/Training/flutter_alura/bytebank/test/widget_test.dart", "owner": "generateddiagnostic_collection_name_#2", "code": "undefined_function", "severity": 8, "message": "The function 'MyApp' isn't defined.\nTry importing the library that defines 'MyApp', correcting the name to the name of an existing function, or defining a function named 'MyApp'.", "source": "dart", "startLineNumber": 16, "startColumn": 29, "endLineNumber": 16, "endColumn": 34 }

2 respostas

Você pode compartilhar o seu código até agora? Também, rode o comando flutter doctor na raiz do seu projeto e coloque a saída aqui, por favor.

Olá, de acordo com a mensagem

The function 'MyApp' isn't defined
Try importing the library that defines 'MyApp', correcting the name to the name of an existing function, or defining a function named 'MyApp'.
 "startLineNumber": 16, "startColumn": 29, "endLineNumber": 16, "endColumn": 34

dá a entender que na linha 16 você está fazendo a chamado do MyApp, porém o MyApp não existe. Normalmente isso ocorre no main.dart

Veja se no seu main.dart está idem ou próximo a isso:

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(...);
  }
}