【发布时间】:2021-01-19 16:19:33
【问题描述】:
我有一个包含 YouTube 视频的应用程序,我想在 YouTube 应用程序中打开它们,对于 android 我使用 android_intent 包,IOS 是否有相同的包?或其他方式? android_intemt 代码:
child: InkWell(
onTap: () async {
await intent.launch();
},
child: YoutubePlayer(
controller: _controller,
showVideoProgressIndicator: true,
progressIndicatorColor: Colors.blueAccent,
),)
【问题讨论】: