build list of ICD10 codes

This commit is contained in:
2024-12-04 13:57:56 +02:00
parent e9a7338015
commit 3ab069e9fe

View File

@@ -43,7 +43,7 @@ class _BuildPatientsListState extends State<BuildICD10CodeList> {
//select code
setState(() {
widget.icd10CodeController.text =
"${widget.icd10codeList[index].icd10}: ${widget.icd10codeList[index].description}";
"${widget.icd10codeList[index].icd10} - ${widget.icd10codeList[index].description}";
});
Navigator.of(context).pop();
},