I have an App contain YouTube videos ,I want to open them in YouTube App ,for android I used android_intent package ,is there same package for IOS ? or another way? android_intemt code :
child: InkWell(
onTap: () async {
await intent.launch();
},
child: YoutubePlayer(
controller: _controller,
showVideoProgressIndicator: true,
progressIndicatorColor: Colors.blueAccent,
),)