await launchUrl(
uri,
webOnlyWindowName: isNewTab ? '_blank' : '_self',
);
with _blank launchUrl open new tab but it changes tab focus to new tab. How can I keep tab focus into existing tab not new tab.
await launchUrl(
uri,
webOnlyWindowName: isNewTab ? '_blank' : '_self',
);
with _blank launchUrl open new tab but it changes tab focus to new tab. How can I keep tab focus into existing tab not new tab.