Replace "," with ", " in plans page
This commit is contained in:
parent
4e2ca56a69
commit
69f7e0c87b
|
@ -72,8 +72,9 @@ class _PlansPageState extends State<_PlansPage> {
|
|||
itemCount: plans.length,
|
||||
itemBuilder: (context, index) {
|
||||
return ListTile(
|
||||
title: Text(plans[index].days),
|
||||
subtitle: Text(plans[index].workouts),
|
||||
title: Text(plans[index].days.replaceAll(',', ', ')),
|
||||
subtitle:
|
||||
Text(plans[index].workouts.replaceAll(',', ', ')),
|
||||
onTap: () async {
|
||||
await Navigator.push(
|
||||
context,
|
||||
|
|
Loading…
Reference in New Issue
Block a user