mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-15 21:32:29 +10:00
Add localization for 'Received a GIF' in multiple languages and update chat UI
This commit is contained in:
@@ -1579,9 +1579,11 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
|
||||
}
|
||||
|
||||
String _formatPathPrefixes(Uint8List pathBytes) {
|
||||
// Join with ", " (not bare ",") so long paths have soft-wrap break points
|
||||
// and stay confined to the message bubble instead of overflowing right.
|
||||
return pathBytes
|
||||
.map((b) => b.toRadixString(16).padLeft(2, '0').toUpperCase())
|
||||
.join(',');
|
||||
.join(', ');
|
||||
}
|
||||
|
||||
Future<void> openRegionSelectDialog(Channel channel) async {
|
||||
|
||||
Reference in New Issue
Block a user