mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 04:59:26 +01:00
Merge branch 'soru/render-svg' into 'main'
feat: Add svg support and better image handling See merge request ChristianPauly/fluffychat-flutter!276
This commit is contained in:
commit
e51ed6d2b1
@ -11,6 +11,7 @@ import 'package:universal_html/prefer_universal/html.dart' as html;
|
|||||||
import 'dialogs/simple_dialogs.dart';
|
import 'dialogs/simple_dialogs.dart';
|
||||||
import '../utils/ui_fake.dart' if (dart.library.html) 'dart:ui' as ui;
|
import '../utils/ui_fake.dart' if (dart.library.html) 'dart:ui' as ui;
|
||||||
import 'matrix.dart';
|
import 'matrix.dart';
|
||||||
|
import '../utils/event_extension.dart';
|
||||||
|
|
||||||
class AudioPlayer extends StatefulWidget {
|
class AudioPlayer extends StatefulWidget {
|
||||||
final Color color;
|
final Color color;
|
||||||
@ -67,8 +68,8 @@ class _AudioPlayerState extends State<AudioPlayer> {
|
|||||||
Future<void> _downloadAction() async {
|
Future<void> _downloadAction() async {
|
||||||
if (status != AudioPlayerStatus.NOT_DOWNLOADED) return;
|
if (status != AudioPlayerStatus.NOT_DOWNLOADED) return;
|
||||||
setState(() => status = AudioPlayerStatus.DOWNLOADING);
|
setState(() => status = AudioPlayerStatus.DOWNLOADING);
|
||||||
final matrixFile = await SimpleDialogs(context)
|
final matrixFile = await SimpleDialogs(context).tryRequestWithErrorToast(
|
||||||
.tryRequestWithErrorToast(widget.event.downloadAndDecryptAttachment());
|
widget.event.downloadAndDecryptAttachmentCached());
|
||||||
setState(() {
|
setState(() {
|
||||||
audioFile = matrixFile.bytes;
|
audioFile = matrixFile.bytes;
|
||||||
status = AudioPlayerStatus.DOWNLOADED;
|
status = AudioPlayerStatus.DOWNLOADED;
|
||||||
|
@ -5,6 +5,9 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter_blurhash/flutter_blurhash.dart';
|
import 'package:flutter_blurhash/flutter_blurhash.dart';
|
||||||
import 'package:cached_network_image/cached_network_image.dart';
|
import 'package:cached_network_image/cached_network_image.dart';
|
||||||
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
|
||||||
|
import '../utils/event_extension.dart';
|
||||||
|
|
||||||
class ImageBubble extends StatefulWidget {
|
class ImageBubble extends StatefulWidget {
|
||||||
final Event event;
|
final Event event;
|
||||||
@ -14,6 +17,7 @@ class ImageBubble extends StatefulWidget {
|
|||||||
final Color backgroundColor;
|
final Color backgroundColor;
|
||||||
final double radius;
|
final double radius;
|
||||||
final bool thumbnailOnly;
|
final bool thumbnailOnly;
|
||||||
|
final void Function() onLoaded;
|
||||||
|
|
||||||
const ImageBubble(
|
const ImageBubble(
|
||||||
this.event, {
|
this.event, {
|
||||||
@ -23,6 +27,7 @@ class ImageBubble extends StatefulWidget {
|
|||||||
this.fit = BoxFit.cover,
|
this.fit = BoxFit.cover,
|
||||||
this.radius = 10.0,
|
this.radius = 10.0,
|
||||||
this.thumbnailOnly = true,
|
this.thumbnailOnly = true,
|
||||||
|
this.onLoaded,
|
||||||
Key key,
|
Key key,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
@ -31,132 +36,230 @@ class ImageBubble extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _ImageBubbleState extends State<ImageBubble> {
|
class _ImageBubbleState extends State<ImageBubble> {
|
||||||
bool get isUnencrypted => widget.event.content['url'] is String;
|
String thumbnailUrl;
|
||||||
|
String attachmentUrl;
|
||||||
|
MatrixFile _file;
|
||||||
|
MatrixFile _thumbnail;
|
||||||
|
bool _requestedThumbnailOnFailure = false;
|
||||||
|
|
||||||
static final Map<String, MatrixFile> _matrixFileMap = {};
|
bool get isSvg =>
|
||||||
MatrixFile get _file => _matrixFileMap[widget.event.eventId];
|
widget.event.attachmentMimetype.split('+').first == 'image/svg';
|
||||||
set _file(MatrixFile file) {
|
bool get isThumbnailSvg =>
|
||||||
if (file != null) {
|
widget.event.thumbnailMimetype.split('+').first == 'image/svg';
|
||||||
_matrixFileMap[widget.event.eventId] = file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static final Map<String, MatrixFile> _matrixThumbnailMap = {};
|
MatrixFile get _displayFile => _file ?? _thumbnail;
|
||||||
MatrixFile get _thumbnail => _matrixThumbnailMap[widget.event.eventId];
|
String get displayUrl => widget.thumbnailOnly ? thumbnailUrl : attachmentUrl;
|
||||||
set _thumbnail(MatrixFile thumbnail) {
|
|
||||||
if (thumbnail != null) {
|
|
||||||
_matrixThumbnailMap[widget.event.eventId] = thumbnail;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dynamic _error;
|
dynamic _error;
|
||||||
|
|
||||||
bool _requestedFile = false;
|
Future<void> _requestFile({bool getThumbnail = false}) async {
|
||||||
Future<MatrixFile> _getFile() async {
|
try {
|
||||||
_requestedFile = true;
|
final res = await widget.event
|
||||||
if (widget.thumbnailOnly) return null;
|
.downloadAndDecryptAttachmentCached(getThumbnail: getThumbnail);
|
||||||
if (_file != null) return _file;
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
return widget.event.downloadAndDecryptAttachment();
|
if (getThumbnail) {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _thumbnail = res);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (widget.onLoaded != null) {
|
||||||
|
widget.onLoaded();
|
||||||
|
}
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _file = res);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _error = err);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
bool _requestedThumbnail = false;
|
|
||||||
Future<MatrixFile> _getThumbnail() async {
|
|
||||||
_requestedThumbnail = true;
|
|
||||||
if (isUnencrypted) return null;
|
|
||||||
if (_thumbnail != null) return _thumbnail;
|
|
||||||
return widget.event
|
|
||||||
.downloadAndDecryptAttachment(getThumbnail: widget.event.hasThumbnail);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
void initState() {
|
||||||
return ClipRRect(
|
thumbnailUrl = widget.event.getAttachmentUrl(getThumbnail: true);
|
||||||
borderRadius: BorderRadius.circular(widget.radius),
|
attachmentUrl = widget.event.getAttachmentUrl();
|
||||||
child: Container(
|
if (thumbnailUrl == null) {
|
||||||
height: widget.maxSize ? 300 : null,
|
_requestFile(getThumbnail: true);
|
||||||
width: widget.maxSize ? 400 : null,
|
}
|
||||||
child: Builder(
|
if (!widget.thumbnailOnly && attachmentUrl == null) {
|
||||||
builder: (BuildContext context) {
|
_requestFile();
|
||||||
if (_error != null) {
|
} else {
|
||||||
|
// if the full attachment is cached, we might as well fetch it anyways.
|
||||||
|
// no need to stick with thumbnail only, since we don't do any networking
|
||||||
|
widget.event.isAttachmentCached().then((cached) {
|
||||||
|
if (cached) {
|
||||||
|
_requestFile();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget getErrorWidget() {
|
||||||
return Center(
|
return Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
_error.toString(),
|
_error.toString(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (_thumbnail == null && !_requestedThumbnail && !isUnencrypted) {
|
|
||||||
_getThumbnail().then((MatrixFile thumbnail) {
|
|
||||||
if (mounted) {
|
|
||||||
setState(() => _thumbnail = thumbnail);
|
|
||||||
}
|
|
||||||
}, onError: (error, stacktrace) {
|
|
||||||
if (mounted) {
|
|
||||||
setState(() => _error = error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (_file == null && !widget.thumbnailOnly && !_requestedFile) {
|
|
||||||
_getFile().then((MatrixFile file) {
|
|
||||||
if (mounted) {
|
|
||||||
setState(() => _file = file);
|
|
||||||
}
|
|
||||||
}, onError: (error, stacktrace) {
|
|
||||||
if (mounted) {
|
|
||||||
setState(() => _error = error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
final display = _file ?? _thumbnail;
|
|
||||||
|
|
||||||
final generatePlaceholderWidget = () => Stack(
|
Widget getPlaceholderWidget() {
|
||||||
|
Widget blurhash;
|
||||||
|
if (widget.event.infoMap['xyz.amorgan.blurhash'] is String) {
|
||||||
|
final ratio =
|
||||||
|
widget.event.infoMap['w'] is int && widget.event.infoMap['h'] is int
|
||||||
|
? widget.event.infoMap['w'] / widget.event.infoMap['h']
|
||||||
|
: 1.0;
|
||||||
|
var width = 32;
|
||||||
|
var height = 32;
|
||||||
|
if (ratio > 1.0) {
|
||||||
|
height = (width / ratio).round();
|
||||||
|
} else {
|
||||||
|
width = (height * ratio).round();
|
||||||
|
}
|
||||||
|
blurhash = BlurHash(
|
||||||
|
hash: widget.event.infoMap['xyz.amorgan.blurhash'],
|
||||||
|
decodingWidth: width,
|
||||||
|
decodingHeight: height,
|
||||||
|
imageFit: widget.fit,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Stack(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
if (widget.event.content['info'] is Map &&
|
if (blurhash != null) blurhash,
|
||||||
widget.event.content['info']['xyz.amorgan.blurhash']
|
|
||||||
is String)
|
|
||||||
BlurHash(
|
|
||||||
hash: widget.event.content['info']
|
|
||||||
['xyz.amorgan.blurhash']),
|
|
||||||
Center(
|
Center(
|
||||||
child: CircularProgressIndicator(),
|
child: CircularProgressIndicator(),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Widget renderWidget;
|
Widget getMemoryWidget() {
|
||||||
if (display != null) {
|
final isOriginal = _file != null ||
|
||||||
renderWidget = Image.memory(
|
widget.event.attachmentOrThumbnailMxcUrl(getThumbnail: true) ==
|
||||||
display.bytes,
|
widget.event.attachmentMxcUrl;
|
||||||
fit: widget.fit,
|
final key = isOriginal
|
||||||
);
|
? widget.event.attachmentMxcUrl
|
||||||
} else if (isUnencrypted) {
|
: widget.event.thumbnailMxcUrl;
|
||||||
final src = Uri.parse(widget.event.content['url']).getThumbnail(
|
if (isOriginal ? isSvg : isThumbnailSvg) {
|
||||||
widget.event.room.client,
|
return SvgPicture.memory(
|
||||||
width: 800,
|
_displayFile.bytes,
|
||||||
height: 800,
|
key: ValueKey(key),
|
||||||
method: ThumbnailMethod.scale);
|
|
||||||
renderWidget = CachedNetworkImage(
|
|
||||||
imageUrl: src,
|
|
||||||
placeholder: (context, url) => generatePlaceholderWidget(),
|
|
||||||
fit: widget.fit,
|
fit: widget.fit,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
renderWidget = generatePlaceholderWidget();
|
return Image.memory(
|
||||||
|
_displayFile.bytes,
|
||||||
|
key: ValueKey(key),
|
||||||
|
fit: widget.fit,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return InkWell(
|
}
|
||||||
|
|
||||||
|
Widget getNetworkWidget() {
|
||||||
|
if (displayUrl == attachmentUrl &&
|
||||||
|
(_requestedThumbnailOnFailure ? isSvg : isThumbnailSvg)) {
|
||||||
|
return SvgPicture.network(
|
||||||
|
displayUrl,
|
||||||
|
key: ValueKey(displayUrl),
|
||||||
|
placeholderBuilder: (context) => getPlaceholderWidget(),
|
||||||
|
fit: widget.fit,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return CachedNetworkImage(
|
||||||
|
// as we change the url on-error we need a key so that the widget actually updates
|
||||||
|
key: ValueKey(displayUrl),
|
||||||
|
imageUrl: displayUrl,
|
||||||
|
placeholder: (context, url) {
|
||||||
|
if (!widget.thumbnailOnly &&
|
||||||
|
displayUrl != thumbnailUrl &&
|
||||||
|
displayUrl == attachmentUrl) {
|
||||||
|
// we have to display the thumbnail while loading
|
||||||
|
return CachedNetworkImage(
|
||||||
|
key: ValueKey(thumbnailUrl),
|
||||||
|
imageUrl: thumbnailUrl,
|
||||||
|
placeholder: (c, u) => getPlaceholderWidget(),
|
||||||
|
fit: widget.fit,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return getPlaceholderWidget();
|
||||||
|
},
|
||||||
|
errorWidget: (context, url, error) {
|
||||||
|
// we can re-request the thumbnail
|
||||||
|
if (!_requestedThumbnailOnFailure) {
|
||||||
|
_requestedThumbnailOnFailure = true;
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
setState(() {
|
||||||
|
thumbnailUrl = widget.event.getAttachmentUrl(
|
||||||
|
getThumbnail: true, useThumbnailMxcUrl: true);
|
||||||
|
attachmentUrl =
|
||||||
|
widget.event.getAttachmentUrl(useThumbnailMxcUrl: true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return getPlaceholderWidget();
|
||||||
|
},
|
||||||
|
fit: widget.fit,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
Widget content;
|
||||||
|
String key;
|
||||||
|
if (_error != null) {
|
||||||
|
content = getErrorWidget();
|
||||||
|
key = 'error';
|
||||||
|
} else if (_displayFile != null) {
|
||||||
|
content = getMemoryWidget();
|
||||||
|
key = 'memory-' + (content.key as ValueKey).value;
|
||||||
|
} else if (displayUrl != null) {
|
||||||
|
content = getNetworkWidget();
|
||||||
|
key = 'network-' + (content.key as ValueKey).value;
|
||||||
|
} else {
|
||||||
|
content = getPlaceholderWidget();
|
||||||
|
key = 'placeholder';
|
||||||
|
}
|
||||||
|
return ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(widget.radius),
|
||||||
|
child: InkWell(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (!widget.tapToView) return;
|
if (!widget.tapToView) return;
|
||||||
Navigator.of(context).push(
|
Navigator.of(context).push(
|
||||||
AppRoute(
|
AppRoute(
|
||||||
ImageView(widget.event),
|
ImageView(widget.event, onLoaded: () {
|
||||||
|
// If the original file didn't load yet, we want to do that now.
|
||||||
|
// This is so that the original file displays after going on the image viewer,
|
||||||
|
// waiting for it to load, and then hitting back. This ensures that we always
|
||||||
|
// display the best image available, with requiring as little network as possible
|
||||||
|
if (_file == null) {
|
||||||
|
widget.event.isAttachmentCached().then((cached) {
|
||||||
|
if (cached) {
|
||||||
|
_requestFile();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
child: Hero(
|
child: Hero(
|
||||||
tag: widget.event.eventId,
|
tag: widget.event.eventId,
|
||||||
child: renderWidget,
|
child: AnimatedSwitcher(
|
||||||
|
duration: Duration(milliseconds: 1000),
|
||||||
|
child: Container(
|
||||||
|
key: ValueKey(key),
|
||||||
|
height: widget.maxSize ? 300 : null,
|
||||||
|
width: widget.maxSize ? 400 : null,
|
||||||
|
child: content,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -2,6 +2,7 @@ import 'package:famedlysdk/famedlysdk.dart';
|
|||||||
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
|
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
||||||
import 'matrix_file_extension.dart';
|
import 'matrix_file_extension.dart';
|
||||||
import 'app_route.dart';
|
import 'app_route.dart';
|
||||||
import '../views/image_view.dart';
|
import '../views/image_view.dart';
|
||||||
@ -19,7 +20,7 @@ extension LocalizedBody on Event {
|
|||||||
}
|
}
|
||||||
final MatrixFile matrixFile =
|
final MatrixFile matrixFile =
|
||||||
await SimpleDialogs(context).tryRequestWithLoadingDialog(
|
await SimpleDialogs(context).tryRequestWithLoadingDialog(
|
||||||
downloadAndDecryptAttachment(),
|
downloadAndDecryptAttachmentCached(),
|
||||||
);
|
);
|
||||||
matrixFile.open();
|
matrixFile.open();
|
||||||
}
|
}
|
||||||
@ -39,17 +40,18 @@ extension LocalizedBody on Event {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool get isAttachmentSmallEnough =>
|
||||||
|
infoMap['size'] is int &&
|
||||||
|
infoMap['size'] < room.client.database.maxFileSize;
|
||||||
|
bool get isThumbnailSmallEnough =>
|
||||||
|
thumbnailInfoMap['size'] is int &&
|
||||||
|
thumbnailInfoMap['size'] < room.client.database.maxFileSize;
|
||||||
|
|
||||||
bool get showThumbnail =>
|
bool get showThumbnail =>
|
||||||
[MessageTypes.Image, MessageTypes.Sticker].contains(messageType) &&
|
[MessageTypes.Image, MessageTypes.Sticker].contains(messageType) &&
|
||||||
(kIsWeb ||
|
(kIsWeb ||
|
||||||
(content['info'] is Map &&
|
isAttachmentSmallEnough ||
|
||||||
content['info']['size'] is int &&
|
isThumbnailSmallEnough ||
|
||||||
content['info']['size'] < room.client.database.maxFileSize) ||
|
|
||||||
(hasThumbnail &&
|
|
||||||
content['info']['thumbnail_info'] is Map &&
|
|
||||||
content['info']['thumbnail_info']['size'] is int &&
|
|
||||||
content['info']['thumbnail_info']['size'] <
|
|
||||||
room.client.database.maxFileSize) ||
|
|
||||||
(content['url'] is String));
|
(content['url'] is String));
|
||||||
|
|
||||||
String get sizeString {
|
String get sizeString {
|
||||||
@ -73,4 +75,36 @@ extension LocalizedBody on Event {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static final _downloadAndDecryptFutures = <String, Future<MatrixFile>>{};
|
||||||
|
|
||||||
|
Future<bool> isAttachmentCached({bool getThumbnail = false}) async {
|
||||||
|
final mxcUrl = attachmentOrThumbnailMxcUrl(getThumbnail: getThumbnail);
|
||||||
|
// check if we have it in-memory
|
||||||
|
if (_downloadAndDecryptFutures.containsKey(mxcUrl)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
// check if it is stored
|
||||||
|
if (await isAttachmentInLocalStore(getThumbnail: getThumbnail)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
// check if the url is cached
|
||||||
|
final url = Uri.parse(mxcUrl).getDownloadLink(room.client);
|
||||||
|
final file = await DefaultCacheManager().getFileFromCache(url);
|
||||||
|
return file != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<MatrixFile> downloadAndDecryptAttachmentCached(
|
||||||
|
{bool getThumbnail = false}) async {
|
||||||
|
final mxcUrl = attachmentOrThumbnailMxcUrl(getThumbnail: getThumbnail);
|
||||||
|
_downloadAndDecryptFutures[mxcUrl] ??= downloadAndDecryptAttachment(
|
||||||
|
getThumbnail: getThumbnail,
|
||||||
|
downloadCallback: (String url) async {
|
||||||
|
final file = await DefaultCacheManager().getSingleFile(url);
|
||||||
|
return await file.readAsBytes();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
final res = await _downloadAndDecryptFutures[mxcUrl];
|
||||||
|
return res;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,8 +7,9 @@ import '../utils/event_extension.dart';
|
|||||||
|
|
||||||
class ImageView extends StatelessWidget {
|
class ImageView extends StatelessWidget {
|
||||||
final Event event;
|
final Event event;
|
||||||
|
final void Function() onLoaded;
|
||||||
|
|
||||||
const ImageView(this.event, {Key key}) : super(key: key);
|
const ImageView(this.event, {Key key, this.onLoaded}) : super(key: key);
|
||||||
|
|
||||||
void _forwardAction(BuildContext context) async {
|
void _forwardAction(BuildContext context) async {
|
||||||
Matrix.of(context).shareContent = event.content;
|
Matrix.of(context).shareContent = event.content;
|
||||||
@ -47,6 +48,7 @@ class ImageView extends StatelessWidget {
|
|||||||
child: ImageBubble(
|
child: ImageBubble(
|
||||||
event,
|
event,
|
||||||
tapToView: false,
|
tapToView: false,
|
||||||
|
onLoaded: onLoaded,
|
||||||
fit: BoxFit.contain,
|
fit: BoxFit.contain,
|
||||||
backgroundColor: Colors.black,
|
backgroundColor: Colors.black,
|
||||||
maxSize: false,
|
maxSize: false,
|
||||||
|
29
pubspec.lock
29
pubspec.lock
@ -203,7 +203,7 @@ packages:
|
|||||||
name: encrypt
|
name: encrypt
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.3"
|
version: "4.0.2"
|
||||||
fake_async:
|
fake_async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -215,8 +215,8 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: c8d5bbfd144fd4ed36ebb12abc83e7676b9e45b0
|
ref: b1709ca8c3409f58ed711cff3fbe329e9b3c3a9c
|
||||||
resolved-ref: c8d5bbfd144fd4ed36ebb12abc83e7676b9e45b0
|
resolved-ref: b1709ca8c3409f58ed711cff3fbe329e9b3c3a9c
|
||||||
url: "https://gitlab.com/famedly/famedlysdk.git"
|
url: "https://gitlab.com/famedly/famedlysdk.git"
|
||||||
source: git
|
source: git
|
||||||
version: "0.0.1"
|
version: "0.0.1"
|
||||||
@ -317,7 +317,7 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "0.5.0"
|
version: "0.5.0"
|
||||||
flutter_cache_manager:
|
flutter_cache_manager:
|
||||||
dependency: transitive
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: flutter_cache_manager
|
name: flutter_cache_manager
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
@ -405,6 +405,13 @@ packages:
|
|||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.1"
|
version: "2.1.1"
|
||||||
|
flutter_svg:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: flutter_svg
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.19.1"
|
||||||
flutter_test:
|
flutter_test:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description: flutter
|
description: flutter
|
||||||
@ -676,6 +683,20 @@ packages:
|
|||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.8.0-nullsafety.1"
|
version: "1.8.0-nullsafety.1"
|
||||||
|
path_drawing:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: path_drawing
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.4.1+1"
|
||||||
|
path_parsing:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: path_parsing
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.1.4"
|
||||||
path_provider:
|
path_provider:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -23,7 +23,7 @@ dependencies:
|
|||||||
famedlysdk:
|
famedlysdk:
|
||||||
git:
|
git:
|
||||||
url: https://gitlab.com/famedly/famedlysdk.git
|
url: https://gitlab.com/famedly/famedlysdk.git
|
||||||
ref: c8d5bbfd144fd4ed36ebb12abc83e7676b9e45b0
|
ref: b1709ca8c3409f58ed711cff3fbe329e9b3c3a9c
|
||||||
|
|
||||||
localstorage: ^3.0.3+6
|
localstorage: ^3.0.3+6
|
||||||
file_picker_cross: 4.2.2
|
file_picker_cross: 4.2.2
|
||||||
@ -71,6 +71,8 @@ dependencies:
|
|||||||
sentry: ">=3.0.0 <4.0.0"
|
sentry: ">=3.0.0 <4.0.0"
|
||||||
scroll_to_index: ^1.0.6
|
scroll_to_index: ^1.0.6
|
||||||
swipe_to_action: ^0.1.0
|
swipe_to_action: ^0.1.0
|
||||||
|
flutter_svg: ^0.19.1
|
||||||
|
flutter_cache_manager: ^2.0.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
Loading…
Reference in New Issue
Block a user