File tree 7 files changed +14
-21
lines changed
7 files changed +14
-21
lines changed Original file line number Diff line number Diff line change @@ -103,9 +103,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
103
103
itemCount: _movieList.length,
104
104
itemBuilder: (context, index) {
105
105
return ListTile (
106
- leading: _movieList.isEmpty
107
- ? null
108
- : const FlutterLogo (),
106
+ leading:
107
+ _movieList.isEmpty ? null : const FlutterLogo (),
109
108
title: Text (_movieList[index]),
110
109
);
111
110
},
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
92
92
itemCount: _movieList.length,
93
93
itemBuilder: (context, index) {
94
94
return ListTile (
95
- leading: _movieList.isEmpty
96
- ? null
97
- : const FlutterLogo (),
95
+ leading:
96
+ _movieList.isEmpty ? null : const FlutterLogo (),
98
97
title: Text (_movieList[index]),
99
98
);
100
99
},
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
92
92
itemCount: _movieList.length,
93
93
itemBuilder: (context, index) {
94
94
return ListTile (
95
- leading: _movieList.isEmpty
96
- ? null
97
- : const FlutterLogo (),
95
+ leading:
96
+ _movieList.isEmpty ? null : const FlutterLogo (),
98
97
title: Text (_movieList[index]),
99
98
);
100
99
},
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
92
92
itemCount: _movieList.length,
93
93
itemBuilder: (context, index) {
94
94
return ListTile (
95
- leading: _movieList.isEmpty
96
- ? null
97
- : const FlutterLogo (),
95
+ leading:
96
+ _movieList.isEmpty ? null : const FlutterLogo (),
98
97
title: Text (_movieList[index]),
99
98
);
100
99
},
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
92
92
itemCount: _movieList.length,
93
93
itemBuilder: (context, index) {
94
94
return ListTile (
95
- leading: _movieList.isEmpty
96
- ? null
97
- : const FlutterLogo (),
95
+ leading:
96
+ _movieList.isEmpty ? null : const FlutterLogo (),
98
97
title: Text (_movieList[index]),
99
98
);
100
99
},
Original file line number Diff line number Diff line change @@ -103,9 +103,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
103
103
itemCount: _movieList.length,
104
104
itemBuilder: (context, index) {
105
105
return ListTile (
106
- leading: _movieList.isEmpty
107
- ? null
108
- : const FlutterLogo (),
106
+ leading:
107
+ _movieList.isEmpty ? null : const FlutterLogo (),
109
108
title: Text (_movieList[index]),
110
109
);
111
110
},
Original file line number Diff line number Diff line change @@ -103,9 +103,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
103
103
itemCount: _movieList.length,
104
104
itemBuilder: (context, index) {
105
105
return ListTile (
106
- leading: _movieList.isEmpty
107
- ? null
108
- : const FlutterLogo (),
106
+ leading:
107
+ _movieList.isEmpty ? null : const FlutterLogo (),
109
108
title: Text (_movieList[index]),
110
109
);
111
110
},
You can’t perform that action at this time.
0 commit comments