set web renderer
This commit is contained in:
@@ -152,7 +152,9 @@ class TVShow {
|
||||
download: json['download'],
|
||||
overview: '',
|
||||
backdropPath: '',
|
||||
seasonStatus: [],
|
||||
seasonStatus: json['seasons']
|
||||
.map<Season>((json) => Season.fromJson(json))
|
||||
.toList(),
|
||||
languages: '',
|
||||
networks: '',
|
||||
originCountries: '',
|
||||
|
||||
@@ -323,10 +323,10 @@ class MovieDetailsScreen extends StatelessWidget {
|
||||
return Stack(children: [
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: movieDetails.backdropPath.isNotEmpty ? DecorationImage(
|
||||
image: NetworkImage(url),
|
||||
fit: BoxFit.cover,
|
||||
),
|
||||
) : null,
|
||||
),
|
||||
),
|
||||
SingleChildScrollView(
|
||||
|
||||
@@ -342,10 +342,10 @@ class TVShowDetailsScreen extends StatelessWidget {
|
||||
return Stack(children: [
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: tvShowDetails.backdropPath.isNotEmpty ? DecorationImage(
|
||||
image: NetworkImage(url),
|
||||
fit: BoxFit.cover,
|
||||
),
|
||||
) : null,
|
||||
),
|
||||
),
|
||||
SingleChildScrollView(
|
||||
|
||||
Reference in New Issue
Block a user