|
|
|
@ -40,13 +40,18 @@ class _VideoAppState extends State<VideoApp> { |
|
|
|
|
Widget build(BuildContext context) { |
|
|
|
|
final defaultStyles = DefaultStyles.getInstance(context); |
|
|
|
|
if (!_controller.value.isInitialized || _controller.value.hasError) { |
|
|
|
|
if (widget.readOnly) { |
|
|
|
|
return RichText( |
|
|
|
|
text: TextSpan( |
|
|
|
|
text: widget.videoUrl, |
|
|
|
|
style: defaultStyles.link, |
|
|
|
|
recognizer: TapGestureRecognizer() |
|
|
|
|
..onTap = () => launch(widget.videoUrl)), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return RichText( |
|
|
|
|
text: TextSpan( |
|
|
|
|
text: widget.videoUrl, |
|
|
|
|
style: defaultStyles.link, |
|
|
|
|
recognizer: TapGestureRecognizer() |
|
|
|
|
..onTap = () => launch(widget.videoUrl)), |
|
|
|
|
); |
|
|
|
|
text: TextSpan(text: widget.videoUrl, style: defaultStyles.link)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return Container( |
|
|
|
|