Geert
03/25/2021, 10:47 AMGeert
03/25/2021, 10:47 AMfun TimingView(timing: AdministrationScheduleViewModelData) {
Text(timing.scheduleText ?: "")
}
Row(horizontalArrangement = Arrangement.spacedBy(4.dp)) {
TimingView(instructions.timing)
if (instructions.isDoseAvailable) {
Text(instructions.dose!!)
}
if (instructions.isMaxDosePerPeriodAvailable) {
Text(instructions.maxDosePerPeriod!!)
}
}
julioromano
03/25/2021, 10:55 AMFlowRow
, it’s just been released with the latest version of accompanist: https://google.github.io/accompanist/flowlayout/#usageGeert
03/25/2021, 11:12 AM