💄 Better post rendering
This commit is contained in:
parent
fffad00f00
commit
fdeb52bf38
@ -6,6 +6,7 @@ import 'package:get/get.dart';
|
|||||||
import 'package:solian/models/event.dart';
|
import 'package:solian/models/event.dart';
|
||||||
import 'package:solian/widgets/attachments/attachment_list.dart';
|
import 'package:solian/widgets/attachments/attachment_list.dart';
|
||||||
import 'package:url_launcher/url_launcher_string.dart';
|
import 'package:url_launcher/url_launcher_string.dart';
|
||||||
|
import 'package:markdown/markdown.dart' as markdown;
|
||||||
|
|
||||||
class ChatEventMessage extends StatelessWidget {
|
class ChatEventMessage extends StatelessWidget {
|
||||||
final Event item;
|
final Event item;
|
||||||
@ -27,6 +28,7 @@ class ChatEventMessage extends StatelessWidget {
|
|||||||
final body = EventMessageBody.fromJson(item.body);
|
final body = EventMessageBody.fromJson(item.body);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
|
key: Key('m${item.uuid}attachments-box'),
|
||||||
width: min(MediaQuery.of(context).size.width, 640),
|
width: min(MediaQuery.of(context).size.width, 640),
|
||||||
child: AttachmentList(
|
child: AttachmentList(
|
||||||
key: Key('m${item.uuid}attachments'),
|
key: Key('m${item.uuid}attachments'),
|
||||||
@ -48,6 +50,13 @@ class ChatEventMessage extends StatelessWidget {
|
|||||||
data: body.text,
|
data: body.text,
|
||||||
selectable: true,
|
selectable: true,
|
||||||
padding: const EdgeInsets.all(0),
|
padding: const EdgeInsets.all(0),
|
||||||
|
extensionSet: markdown.ExtensionSet(
|
||||||
|
markdown.ExtensionSet.gitHubFlavored.blockSyntaxes,
|
||||||
|
<markdown.InlineSyntax>[
|
||||||
|
markdown.EmojiSyntax(),
|
||||||
|
...markdown.ExtensionSet.gitHubFlavored.inlineSyntaxes
|
||||||
|
],
|
||||||
|
),
|
||||||
onTapLink: (text, href, title) async {
|
onTapLink: (text, href, title) async {
|
||||||
if (href == null) return;
|
if (href == null) return;
|
||||||
await launchUrlString(
|
await launchUrlString(
|
||||||
|
@ -11,6 +11,7 @@ import 'package:solian/widgets/attachments/attachment_list.dart';
|
|||||||
import 'package:solian/widgets/posts/post_quick_action.dart';
|
import 'package:solian/widgets/posts/post_quick_action.dart';
|
||||||
import 'package:timeago/timeago.dart' show format;
|
import 'package:timeago/timeago.dart' show format;
|
||||||
import 'package:url_launcher/url_launcher_string.dart';
|
import 'package:url_launcher/url_launcher_string.dart';
|
||||||
|
import 'package:markdown/markdown.dart' as markdown;
|
||||||
|
|
||||||
class PostItem extends StatefulWidget {
|
class PostItem extends StatefulWidget {
|
||||||
final Post item;
|
final Post item;
|
||||||
@ -78,6 +79,13 @@ class _PostItemState extends State<PostItem> {
|
|||||||
physics: const NeverScrollableScrollPhysics(),
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
data: item.content,
|
data: item.content,
|
||||||
padding: const EdgeInsets.all(0),
|
padding: const EdgeInsets.all(0),
|
||||||
|
extensionSet: markdown.ExtensionSet(
|
||||||
|
markdown.ExtensionSet.gitHubFlavored.blockSyntaxes,
|
||||||
|
<markdown.InlineSyntax>[
|
||||||
|
markdown.EmojiSyntax(),
|
||||||
|
...markdown.ExtensionSet.gitHubFlavored.inlineSyntaxes
|
||||||
|
],
|
||||||
|
),
|
||||||
onTapLink: (text, href, title) async {
|
onTapLink: (text, href, title) async {
|
||||||
if (href == null) return;
|
if (href == null) return;
|
||||||
await launchUrlString(
|
await launchUrlString(
|
||||||
|
@ -905,7 +905,7 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "1.5.0"
|
version: "1.5.0"
|
||||||
markdown:
|
markdown:
|
||||||
dependency: transitive
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: markdown
|
name: markdown
|
||||||
sha256: ef2a1298144e3f985cc736b22e0ccdaf188b5b3970648f2d9dc13efd1d9df051
|
sha256: ef2a1298144e3f985cc736b22e0ccdaf188b5b3970648f2d9dc13efd1d9df051
|
||||||
|
@ -50,6 +50,7 @@ dependencies:
|
|||||||
floor: ^1.5.0
|
floor: ^1.5.0
|
||||||
sqflite: ^2.3.3+1
|
sqflite: ^2.3.3+1
|
||||||
protocol_handler: ^0.2.0
|
protocol_handler: ^0.2.0
|
||||||
|
markdown: ^7.2.2
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
Loading…
Reference in New Issue
Block a user