skip to Main Content

Plugin android studio

I am using gradle version 7.0 and plugin version 7.0.4 (using java language) I had an error with title projectname failed. And no other information involved. I changed gradle to version 7 and now I have an error : Plugin[id:…

VIEW QUESTION

Flutter – I tried using the Url launcher

return ListTile( title: GestureDetector( onTap: () async { String youtubeUrl = "https://www.youtube.com/watch?v=$videoURL"; if (await canLaunch(youtubeUrl)) { await launch(youtubeUrl); } else { ScaffoldMessenger.of(context).showSnackBar(SnackBar( content: Text( "Couldn't open the YouTube video. Check the URL or your device settings."), )); } }, When…

VIEW QUESTION
Back To Top
Search