File tree Expand file tree Collapse file tree 7 files changed +14
-21
lines changed Expand file tree Collapse file tree 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> {
103103 itemCount: _movieList.length,
104104 itemBuilder: (context, index) {
105105 return ListTile (
106- leading: _movieList.isEmpty
107- ? null
108- : const FlutterLogo (),
106+ leading:
107+ _movieList.isEmpty ? null : const FlutterLogo (),
109108 title: Text (_movieList[index]),
110109 );
111110 },
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
9292 itemCount: _movieList.length,
9393 itemBuilder: (context, index) {
9494 return ListTile (
95- leading: _movieList.isEmpty
96- ? null
97- : const FlutterLogo (),
95+ leading:
96+ _movieList.isEmpty ? null : const FlutterLogo (),
9897 title: Text (_movieList[index]),
9998 );
10099 },
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
9292 itemCount: _movieList.length,
9393 itemBuilder: (context, index) {
9494 return ListTile (
95- leading: _movieList.isEmpty
96- ? null
97- : const FlutterLogo (),
95+ leading:
96+ _movieList.isEmpty ? null : const FlutterLogo (),
9897 title: Text (_movieList[index]),
9998 );
10099 },
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
9292 itemCount: _movieList.length,
9393 itemBuilder: (context, index) {
9494 return ListTile (
95- leading: _movieList.isEmpty
96- ? null
97- : const FlutterLogo (),
95+ leading:
96+ _movieList.isEmpty ? null : const FlutterLogo (),
9897 title: Text (_movieList[index]),
9998 );
10099 },
Original file line number Diff line number Diff line change @@ -92,9 +92,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
9292 itemCount: _movieList.length,
9393 itemBuilder: (context, index) {
9494 return ListTile (
95- leading: _movieList.isEmpty
96- ? null
97- : const FlutterLogo (),
95+ leading:
96+ _movieList.isEmpty ? null : const FlutterLogo (),
9897 title: Text (_movieList[index]),
9998 );
10099 },
Original file line number Diff line number Diff line change @@ -103,9 +103,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
103103 itemCount: _movieList.length,
104104 itemBuilder: (context, index) {
105105 return ListTile (
106- leading: _movieList.isEmpty
107- ? null
108- : const FlutterLogo (),
106+ leading:
107+ _movieList.isEmpty ? null : const FlutterLogo (),
109108 title: Text (_movieList[index]),
110109 );
111110 },
Original file line number Diff line number Diff line change @@ -103,9 +103,8 @@ class _RecommenderDemoState extends State<RecommenderDemo> {
103103 itemCount: _movieList.length,
104104 itemBuilder: (context, index) {
105105 return ListTile (
106- leading: _movieList.isEmpty
107- ? null
108- : const FlutterLogo (),
106+ leading:
107+ _movieList.isEmpty ? null : const FlutterLogo (),
109108 title: Text (_movieList[index]),
110109 );
111110 },
You can’t perform that action at this time.
0 commit comments