Compare commits
2 Commits
f4621dd2b4
...
d8dd4060c0
Author | SHA1 | Date | |
---|---|---|---|
d8dd4060c0 | |||
c8e131c1ab |
@ -92,7 +92,7 @@ class _PostActionState extends State<PostAction> {
|
||||
final List<String> attachments = widget.item.body['attachments'] is List
|
||||
? List.from(widget.item.body['attachments']?.whereType<String>())
|
||||
: List.empty();
|
||||
final hasAttachment = attachments.isNotEmpty;
|
||||
final hasMultipleAttachment = attachments.length > 1;
|
||||
|
||||
final screenshot = ScreenshotController();
|
||||
final image = await screenshot.captureFromLongWidget(
|
||||
@ -104,7 +104,7 @@ class _PostActionState extends State<PostAction> {
|
||||
pixelRatio: 2,
|
||||
constraints: BoxConstraints(
|
||||
minWidth: 480,
|
||||
maxWidth: hasAttachment ? 480 : 640,
|
||||
maxWidth: hasMultipleAttachment ? 480 : 640,
|
||||
minHeight: 640,
|
||||
maxHeight: double.infinity,
|
||||
),
|
||||
|
@ -2,7 +2,7 @@ name: solian
|
||||
description: "The Solar Network App"
|
||||
publish_to: "none"
|
||||
|
||||
version: 1.3.7+11
|
||||
version: 1.3.7+12
|
||||
|
||||
environment:
|
||||
sdk: ">=3.3.4 <4.0.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user