win32_browser_detect

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

win32 browser detect

Browser Detect #
Features #
This package detects the Windows default browser and returns the path to the exe.
This package is for Windows only.
Getting started #
Usage #
import 'package:win32_browser_detect/win32_browser_detect.dart';

void main() {
print("Default Browser:");
var detect = BrowserDetect();
print("Browser: ${detect.getDefaultBrowser()}");
print("Path: ${detect.getDefaultBrowserPath()}");

print("");
print("Installed Browsers:");
List<Browser> browsers = detect.getInstalledBrowsers();
for (var browser in browsers) {
print("hive: ${browser.hive}");
print("keyName: ${browser.keyName}");
print("applicationName: ${browser.applicationName}");
print("command: ${browser.command}");
print("");
});
}
copied to clipboard
Additional information #

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.