version bump

This commit is contained in:
Salvatore Giordano
2020-05-18 10:55:27 +02:00
parent 890f729668
commit 18aeb0eba3
12 changed files with 94 additions and 81 deletions
+5
View File
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
import 'package:url_launcher/url_launcher.dart';
Future<void> launchURL(BuildContext context, String url) async {
@@ -12,3 +13,7 @@ Future<void> launchURL(BuildContext context, String url) async {
);
}
}
String getAttachmentHeroTag(Message message, Attachment attachment) {
return '${message.id}-${attachment.imageUrl ?? attachment.assetUrl ?? attachment.thumbUrl ?? attachment.ogScrapeUrl}';
}