我正在尝试在我的颤振应用程序中实现 BLoC 模式,基本上这个应用程序计算一些结果并将其显示在表格中。我创建CalculationResultProvider和CalculationResultBloc
如下
Run Code Online (Sandbox Code Playgroud)class CalculationResultProvider { List<EstimationResult> resultList = new List(); List<EstimationResult> calculateResult(){ return getInitialData(); } List<EstimationResult> getInitialData(){ var cement = new EstimationResult(); cement.material = "Cement"; cement.unit = "Ton"; cement.qty = 10; var sand = new EstimationResult(); sand.material = "Sand"; sand.unit = "Ton"; sand.qty = 12; var gravel = new EstimationResult(); gravel.material = "Gravel"; gravel.unit = "Ton"; gravel.qty = 5; var steel = new EstimationResult(); steel.material = "Steel"; steel.unit = "Ton"; steel.qty = 5; List<EstimationResult> resultList = new List(); resultList.add(cement); resultList.add(sand); resultList.add(gravel); resultList.add(steel); return resultList; } }
和我的 BLoC 提供程序类如下
class CalculationResultBloc {
final resultController = StreamController(); // create a StreamController
final CalculationResultProvider provider =
CalculationResultProvider(); // create an instance of our CounterProvider
Stream get getReult =>
resultController.stream; // create a getter for our stream
void updateResult() {
provider
.calculateResult(); // call the method to increase our count in the provider
resultController.sink.add(provider.resultList); // add the count to our sink
}
void dispose() {
resultController.close(); // close our StreamController
}
}
Run Code Online (Sandbox Code Playgroud)
然后我需要在表格小部件中显示这些数据
class ResultTableWidget extends StatefulWidget {
@override
State<StatefulWidget> createState() => ResultTableWidgetState();
}
class ResultTableWidgetState extends State {
final bloc =
CalculationResultBloc(); // create an instance of the counter bloc
@override
Widget build(BuildContext context) {
return StreamBuilder(
stream: bloc.getReult,
initialData: CalculationResultProvider().getInitialData(),
builder: (context, snapshot) {
DataTable(
columns: [
DataColumn(label: Text('Patch')),
DataColumn(label: Text('Version')),
DataColumn(label: Text('Ready')),
],
rows:
'${snapshot.data}' // Loops through dataColumnText, each iteration assigning the value to element
.map(
((element) => DataRow(
cells: <DataCell>[
DataCell(Text(element[
"Name"])), //Extracting from Map element the value
DataCell(Text(element["Number"])),
DataCell(Text(element["State"])),
],
)),
)
.toList(),
);
});
}
@override
void dispose() {
bloc.dispose();
super.dispose();
}
}
Run Code Online (Sandbox Code Playgroud)
要迭代返回表它应该是 List<EstimationResult>
但是如何将快照转换为List<EstimationResult>?
在 bloc 类或小部件类中进行转换的最佳位置在哪里?
我是 dart 和 flutter 的新手,有人可以回答我的问题吗?
谢谢。
您的小部件类将不知道 . 中的流函数给出的数据类型StreamBuilder,有很多方法可以BloC在流式传输之前转换数据,但是所有这些方法都没有用,因为对于小部件类来说,它只是一个snapshot,而只有您可以在编译时访问的字段是应用于像data字段这样的通用快照的字段。因此,访问自定义列表字段的唯一方法是为您StreamBuilder提供其stream功能所需的数据类型:
StreamBuilder<List<EstimationResult>>(
stream: bloc.getReult,
initialData: CalculationResultProvider().getInitialData(),
builder: (context, snapshot) {
//...
}
);
Run Code Online (Sandbox Code Playgroud)
通过这种方式,您可以将自己snapshot视为List<EstimationResult>,并在收到实际快照之前访问内部字段和函数。在您的情况下,您可能应该将EstimationResult类导入到小部件类中。