【发布时间】:2020-07-23 21:21:54
【问题描述】:
我尝试在另一个类的另一个小部件中返回 MealItem 类的构造函数,我正确地导入了,我得到了这个
错误:没有为“Iterable”类型定义运算符“[]”。尝试定义运算符 '[]'.dartundefined_operator
这里是 MealItem 类
import 'package:flutter/material.dart';
import '../models/meal.dart';
class MealItem extends StatelessWidget {
final String title;
final String imageUrl;
final int duration;
final Complexity complexity;
final Affordability affordability;
MealItem(
this.title,
this.imageUrl,
this.duration,
this.complexity,
this.affordability
);
}
}
这是 CategoryMealsScreen 类中的错误
import 'package:flutter/material.dart';
import '../widgets/meal_item.dart';
import '../models/dummy_data.dart';
class CategoryMealsScreen extends StatelessWidget {
static const routeName = '/CategoriesScreen';
//final String categoryId;
//final String categoryTitle;
//CategoryMealsScreen(this.categoryId,this.categoryTitle);
@override
Widget build(BuildContext context) {
final routeArgs =
ModalRoute.of(context).settings.arguments as Map<String, String>;
final categoryTitle = routeArgs['title'];
final categoryId = routeArgs['id'];
final categoryMeals = DUMMY_MEALS.where((meal) {
return meal.categories.contains(categoryId);
});
return Scaffold(
appBar: AppBar(title: Text(categoryTitle)),
body: ListView.builder(
itemBuilder: (ctx, index) {
return MealItem(
title : categoryMeals[index].title,
imageUrl: categoryMeals[index].imageUrl,
duration: categoryMeals[index].duration,
complexity: categoryMeals[index].complexity,
affordability: categoryMeals[index].affordability
);
},
itemCount: categoryMeals.length,
),
);
}
}
这是使用 vsCode 的 IDE 错误:
The operator '[]' isn't defined for the type 'Iterable<Meal>'.
Try defining the operator '[]'.
任何帮助将不胜感激
【问题讨论】: