get_web_renderer 1.2.1 copy "get_web_renderer: ^1.2.1" to clipboard
get_web_renderer: ^1.2.1 copied to clipboard

An easy way to get the current renderer (HTML or CanvasKit in Web platform and Other for other platforms).

Get Web Renderer #

This package help you to detect current web renderer.

How to use #

This package provide very basic apis to recognize current web renderer.

You just need to add get_web_renderer: ^any to your pubspec.yaml and this is all apis for you to use:

/// Return true if current renderer is HTML
bool _isHtmlRenderer = WebRenderer.isHtmlRenderer;

/// Return true if current renderer is CanvasKit
bool _isCanvasKitRenderer = WebRenderer.isCanvasKitRenderer;

/// Return true if current renderer is not the web platform
bool _isOtherRenderer = WebRenderer.isOtherRenderer;

// return CurrentRenderer.html, CurrentRenderer.canvasKit, CurrentRenderer.other
CurrentRenderer _currentRenderer = WebRenderer.getCurrentRenderer; 
0
likes
160
points
90
downloads

Publisher

verified publisherlamnhan.dev

Weekly Downloads

An easy way to get the current renderer (HTML or CanvasKit in Web platform and Other for other platforms).

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on get_web_renderer