Skip to content

Commit

Permalink
feat: Added properties to align text in signature text
Browse files Browse the repository at this point in the history
  • Loading branch information
i-asimkhan committed Feb 8, 2024
1 parent d6d9648 commit 61b6162
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ class _Web3SignatureTextState extends State<_Web3SignatureText> {

@override
Widget build(BuildContext context) {
return Text(Web3ModalService.signature);
return Text(
Web3ModalService.signature,
maxLines: 2,
overflow: TextOverflow.clip,
);
}
}

0 comments on commit 61b6162

Please sign in to comment.