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