2020-08-31 19:56:48 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2020-08-31 12:22:29 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_markdown/flutter_markdown.dart';
|
2020-09-11 19:29:17 +02:00
|
|
|
import 'package:lemmur/pages/media_view.dart';
|
2020-08-31 12:22:29 +02:00
|
|
|
import 'package:markdown/markdown.dart' as md;
|
|
|
|
|
|
|
|
import '../url_launcher.dart';
|
|
|
|
|
2020-08-31 19:56:48 +02:00
|
|
|
class MarkdownText extends StatelessWidget {
|
|
|
|
final String text;
|
|
|
|
MarkdownText(this.text);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) => MarkdownBody(
|
|
|
|
data: text,
|
|
|
|
extensionSet: md.ExtensionSet.gitHubWeb,
|
|
|
|
onTapLink: (href) {
|
|
|
|
urlLauncher(href)
|
|
|
|
.catchError((e) => Scaffold.of(context).showSnackBar(SnackBar(
|
|
|
|
content: Row(
|
|
|
|
children: [
|
|
|
|
Icon(Icons.warning),
|
2020-08-31 19:58:09 +02:00
|
|
|
Text("couldn't open link"),
|
2020-08-31 19:56:48 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
)));
|
|
|
|
},
|
2020-09-11 19:29:17 +02:00
|
|
|
imageBuilder: (uri, title, alt) => InkWell(
|
|
|
|
onTap: () {
|
|
|
|
Navigator.of(context).push(MaterialPageRoute(
|
|
|
|
builder: (context) => MediaViewPage(uri.toString()),
|
|
|
|
));
|
|
|
|
},
|
|
|
|
child: CachedNetworkImage(
|
|
|
|
imageUrl: uri.toString(),
|
|
|
|
errorWidget: (context, url, error) => Row(
|
|
|
|
children: [
|
|
|
|
Icon(Icons.warning),
|
|
|
|
Text("couldn't load image, ${error.toString()}")
|
|
|
|
],
|
|
|
|
),
|
2020-08-31 19:56:48 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2020-08-31 12:22:29 +02:00
|
|
|
}
|