Replace "," with ", " in plans page
This commit is contained in:
+3
-2
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user