Home > Net >  Flutter is showing Expected to find ','. in main.dart file
Flutter is showing Expected to find ','. in main.dart file

Time:11-15

why Flutter is showing Expected to find ','. in main.dart file

Flutter is showing Expected to find ','. in main.dart file

https://i.stack.imgur.com/iDKS3.png

CodePudding user response:

home: Scaffold(
  appBar: AppBar(...), //here a coma
  body: ,
  
),

CodePudding user response:

on which line you watching this error just add ',' in end

  • Related