Skip to content

Commit

Permalink
Fix lots of prices not being visible
Browse files Browse the repository at this point in the history
  • Loading branch information
JAicewizard committed Sep 3, 2024
1 parent 5ebf890 commit 6c65d99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/ui/screens/food_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,10 @@ class __ProductTileState extends State<_ProductTile> {
title: Text.rich(
TextSpan(
children: [
TextSpan(text: '${widget.product.name} '),
TextSpan(
text: '${widget.product.name} ',
style: Theme.of(context).textTheme.titleMedium!,
),
TextSpan(
text: '€${widget.product.price}',
style: Theme.of(context).textTheme.bodySmall!.copyWith(
Expand Down

0 comments on commit 6c65d99

Please sign in to comment.