web_multiple_tab_detector 0.1.0 copy "web_multiple_tab_detector: ^0.1.0" to clipboard
web_multiple_tab_detector: ^0.1.0 copied to clipboard

outdated

Detect the amount of tabs running in web

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() {
  WebMultipleTabDetector.register();

  if (WebMultipleTabDetector.getTabs() > 1) {
    // only one open tab allowed!
  } else {
    // laucnh app normally
  }
}
12
likes
0
pub points
76%
popularity

Publisher

verified publisherfamedly.com

Detect the amount of tabs running in web

Homepage

License

unknown (LICENSE)

More

Packages that depend on web_multiple_tab_detector