Skip to content

Commit

Permalink
fix: issue website link overflow (#3607)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akashsri3bi authored Jan 21, 2023
1 parent 92ae0db commit db3aaa3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/smooth_app/lib/pages/product/new_product_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,15 @@ class _ProductPageState extends State<ProductPage> with TraceableClientMixin {
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(
Flexible(
child: Text(
website,
overflow: TextOverflow.ellipsis,
style: Theme.of(context)
.textTheme
.bodyText2
?.copyWith(color: Colors.blue),
),
)),
],
),
),
Expand Down

0 comments on commit db3aaa3

Please sign in to comment.