From dc678f94792476ee24cd6f23bd6fda48dab1face Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 3 Apr 2020 20:32:44 +0200 Subject: [PATCH] Fix image scaling --- CHANGELOG.md | 2 ++ lib/components/image_bubble.dart | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 731ca19..21c8122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Version 0.12.0 - 2020-04-?? ### Features: - Implement custom wallpapers +### Fixes: +- Fix image scaling # Version 0.11.0 - 2020-04-02 ### Features: diff --git a/lib/components/image_bubble.dart b/lib/components/image_bubble.dart index 57fabe3..3c22ada 100644 --- a/lib/components/image_bubble.dart +++ b/lib/components/image_bubble.dart @@ -47,7 +47,7 @@ class _ImageBubbleState extends State { _file.bytes, width: size.toDouble(), height: size.toDouble(), - fit: BoxFit.fill, + fit: BoxFit.cover, ), ); }