Skip to content

Commit

Permalink
implement proper text wrapping for blog post labels (using placeholde…
Browse files Browse the repository at this point in the history
…r text)
  • Loading branch information
abbymachines committed Dec 5, 2023
1 parent d4099ee commit 4028b42
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/widgets/items/item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,12 @@ class _ItemState extends State<Item> {
shape: OvalBorder(eccentricity: .5),
title: Row(
children: [
Text(
widget.item.label,
style: TextStyle(fontWeight: FontWeight.bold),
Flexible(
child: Text(
// widget.item.label,
'testing with a very long string of text in order to test the overflow settings! just trying to see what happens',
style: TextStyle(fontWeight: FontWeight.bold),
),
),
],
),
Expand Down

0 comments on commit 4028b42

Please sign in to comment.