the_movie_app_open_source icon indicating copy to clipboard operation
the_movie_app_open_source copied to clipboard

widget.actors[index].profilePath can be null for some actors

Open guyulmaz opened this issue 4 years ago • 0 comments

list_actors_widget.dart

CachedNetworkImage( imageUrl: Constants.baseUrlBackdropImg + (widget.actors[index].profilePath ?? "null"), height: 180, width: 120, fit: BoxFit.fill, errorWidget: (context, url, error) => Icon(Icons.error), ), Positioned( top: 150, child: Container( width: 120, child: Text( widget.actors[index].name??"NAME NOT EXIST!", style: TextStyle(color: Colors.white), textAlign: TextAlign.center, ), ), )

By the way thank you very much for this example app, it helped me lot to understand mobx and flutter_modular :)

guyulmaz avatar Apr 16 '20 00:04 guyulmaz