can now click links in the markdown description on the pizza event page

This commit is contained in:
broodjeaap89 2021-08-28 17:21:17 +02:00
parent aed16832c2
commit 21e922b036

View file

@ -47,7 +47,12 @@ class PizzaEventPageState extends State<PizzaEventPage> {
flex: 80,
child: ListView(
children: <Widget>[
MarkdownBody(data: this.widget.pizzaEvent.recipe.description),
MarkdownBody(
data: this.widget.pizzaEvent.recipe.description,
onTapLink: (text, url, title) {
launch(url!);
},
),
Divider(),
this.widget.pizzaEvent.recipe.getIngredientsTable(this.widget.pizzaEvent.pizzaCount, this.widget.pizzaEvent.doughBallSize),
] + this.widget.pizzaEvent.recipe.recipeSteps.map((recipeStep) => buildRecipeStepWhenWidget(recipeStep)).toList()