Getting error 'Null check operator used on a null value' while working with ListView in Flutter
I am working with a ListView. The code is given below: MediaQuery.removePadding( context: context, removeTop: true, child: ListView.separated( separatorBuilder: (context, index) { return Divider(); }, itemCount: 3, itemBuilder: (context, index) { return Padding( padding: EdgeInsets.all(8.0), child: Container( child: Row( crossAxisAlignment: CrossAxisAlignment.center, children: <Widget>[ Padding( padding: EdgeInsets.only(right: 6), child: SquareAvatar( assetLocation: ‘assets/images/profile_avatar.png’), ), Padding( padding: EdgeInsets.symmetric(horizontal:… Read More Getting error 'Null check operator used on a null value' while working with ListView in Flutter