I've made a flutter "page" with some simple links. If i build for web and open it on Windows with Chrome with vimium plugin, vimium can't find any links to click. Any idea how do i change it to be clickable by vimium?
import 'package:url_launcher/url_launcher.dart';
InkWell(onTap: () {
const url = 'https://www.youtube.com/watch?v=2I-20-jKVF0&t=60s';_launchURL(url);
},
child: const Text('Tinnitus', style: TextStyle(fontSize: 20, decoration: TextDecoration.underline, color: Colors.black),),
),//Inkwell
void _launchURL(String url) async {
await launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication);
}