Skip to content
Snippets Groups Projects
Commit 6146c2f9 authored by vjrj's avatar vjrj
Browse files

Fix overflow in contact name

parent f5344e67
No related branches found
No related tags found
No related merge requests found
...@@ -113,8 +113,13 @@ class _ContactPageState extends State<ContactPage> { ...@@ -113,8 +113,13 @@ class _ContactPageState extends State<ContactPage> {
), ),
]))), ]))),
const SizedBox(height: 10), const SizedBox(height: 10),
Text(contact.titleWithoutNick, Padding(
style: Theme.of(context).textTheme.titleLarge), padding: const EdgeInsets.symmetric(horizontal: 10),
child: Text(contact.titleWithoutNick,
overflow: TextOverflow.ellipsis,
softWrap: false,
style: Theme.of(context).textTheme.titleLarge),
)
])), ])),
), ),
const SizedBox(height: 20), const SizedBox(height: 20),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment