forked from Nexus/nexus
Compare commits
No commits in common. "b727d0342da7bfbe7998b763e4e77b2034671819" and "632c02a51713de0c53c1ec7ea658c692cb617123" have entirely different histories.
b727d0342d
...
632c02a517
2 changed files with 2 additions and 2 deletions
2
gomuks
2
gomuks
|
|
@ -1 +1 @@
|
||||||
Subproject commit 23638a8d2b5ad7ed9f72a0ec39f56cac119c45fb
|
Subproject commit 819f5d69f068ddedb08fe732f50570e33dd19e0f
|
||||||
|
|
@ -19,7 +19,7 @@ class MessageImage extends ConsumerWidget {
|
||||||
child: ClipRRect(
|
child: ClipRRect(
|
||||||
borderRadius: .all(.circular(8)),
|
borderRadius: .all(.circular(8)),
|
||||||
child: AspectRatio(
|
child: AspectRatio(
|
||||||
aspectRatio: (info?.width ?? 1) / (info?.height ?? 1),
|
aspectRatio: info!.width! / info!.height!,
|
||||||
child: Image(
|
child: Image(
|
||||||
image: CachedNetworkImage(
|
image: CachedNetworkImage(
|
||||||
url.toString(),
|
url.toString(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue