Home > Mobile >  I am getting the Error: Expected ',' before this. in my code specifying the body in Flutte
I am getting the Error: Expected ',' before this. in my code specifying the body in Flutte

Time:12-23

 @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar:AppBar(
        title: Text('New project',style: TextStyle(fontSize:25,color: Colors.green,decorationStyle: TextDecorationStyle.dotted ),),
    )
        body: Center(
         child: Column(
          children: <Widget>[
          Text('How many times pushed'),
          Text('ok')
      ],
    ),
    ),

    );

  }
}

When I try to run the code,I am getting the error "Expected ',' before this" close to the body, Whats the soltuion for it

CodePudding user response:

Try below code add , before body start

return Scaffold(
      appBar: AppBar(
        title: Text(
          'New project',
          style: TextStyle(
              fontSize: 25,
              color: Colors.green,
              decorationStyle: TextDecorationStyle.dotted),
        ),
      ),
      body: Center(
        child: Column(
          children: <Widget>[Text('How many times pushed'), Text('ok')],
        ),
      ),
    );

Result-> image

CodePudding user response:

return Scaffold(
  appBar: AppBar(
    title: Text(
      'New project',
      style: TextStyle(
          fontSize: 25,
          color: Colors.green,
          decorationStyle: TextDecorationStyle.dotted),
    ),
  ), -----------------> add , here
  body: Center(
    child: Column(
      children: <Widget>[Text('How many times pushed'), Text('ok')],
    ),
  ),
);
  • Related