Fix image scaling
This commit is contained in:
parent
bfa04e45eb
commit
dc678f9479
|
@ -1,6 +1,8 @@
|
||||||
# Version 0.12.0 - 2020-04-??
|
# Version 0.12.0 - 2020-04-??
|
||||||
### Features:
|
### Features:
|
||||||
- Implement custom wallpapers
|
- Implement custom wallpapers
|
||||||
|
### Fixes:
|
||||||
|
- Fix image scaling
|
||||||
|
|
||||||
# Version 0.11.0 - 2020-04-02
|
# Version 0.11.0 - 2020-04-02
|
||||||
### Features:
|
### Features:
|
||||||
|
|
|
@ -47,7 +47,7 @@ class _ImageBubbleState extends State<ImageBubble> {
|
||||||
_file.bytes,
|
_file.bytes,
|
||||||
width: size.toDouble(),
|
width: size.toDouble(),
|
||||||
height: size.toDouble(),
|
height: size.toDouble(),
|
||||||
fit: BoxFit.fill,
|
fit: BoxFit.cover,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue