【发布时间】:2019-09-19 14:37:13
【问题描述】:
我正在尝试在我的颤振应用中实现 BLoC 模式,
基本上这个应用程序计算一些结果并将其显示在表格中。
我创建了CalculationResultProvider 和CalculationResultBloc
如下
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
}
}
那么我需要在表格小部件中显示这些数据
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();
}
}
要迭代返回表,它应该是List<EstimationResult>
但是如何将快照转换为List<EstimationResult>?
在 bloc 类或小部件类中进行转换的最佳位置在哪里?
我是 dart 和 flutter 新手,谁能回答我的问题?
谢谢。
【问题讨论】: