web_multiple_tab_detector

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

web multiple tab detector

Web Multiple Tab Detector #
This package makes it possible to detect how many browser tabs in the webbrowser your flutter app is currently running in.
If you are not in a webbrowser, this will always return 0.
If you want to ensure that your flutter app is only running one in the webbrowser then don't start the app if the number of tabs is >1.
Example #
import 'package:web_multiple_tab_detector/web_multiple_tab_detector.dart';

void main() async {
WebMultipleTabDetector.register();

if (await WebMultipleTabDetector.isSingleTab()) {
// only one open tab allowed!
} else {
// laucnh app normally
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.