Add Link as source for images and videos (#316)
* Add Link as source for images and videos Hosted images and videos are supported, but there's no way to actually insert them. * Always provide an option to add media from linkpull/324/head
parent
350296e4bf
commit
30df844d17
8 changed files with 226 additions and 59 deletions
@ -0,0 +1,4 @@ |
||||
enum MediaPickSetting { |
||||
Gallery, |
||||
Link, |
||||
} |
@ -0,0 +1,39 @@ |
||||
import 'package:flutter/material.dart'; |
||||
|
||||
class LinkDialog extends StatefulWidget { |
||||
const LinkDialog({Key? key}) : super(key: key); |
||||
|
||||
@override |
||||
LinkDialogState createState() => LinkDialogState(); |
||||
} |
||||
|
||||
class LinkDialogState extends State<LinkDialog> { |
||||
String _link = ''; |
||||
|
||||
@override |
||||
Widget build(BuildContext context) { |
||||
return AlertDialog( |
||||
content: TextField( |
||||
decoration: const InputDecoration(labelText: 'Paste a link'), |
||||
autofocus: true, |
||||
onChanged: _linkChanged, |
||||
), |
||||
actions: [ |
||||
TextButton( |
||||
onPressed: _link.isNotEmpty ? _applyLink : null, |
||||
child: const Text('Ok'), |
||||
), |
||||
], |
||||
); |
||||
} |
||||
|
||||
void _linkChanged(String value) { |
||||
setState(() { |
||||
_link = value; |
||||
}); |
||||
} |
||||
|
||||
void _applyLink() { |
||||
Navigator.pop(context, _link); |
||||
} |
||||
} |
Loading…
Reference in new issue