vk_native_client 0.0.9 copy "vk_native_client: ^0.0.9" to clipboard
vk_native_client: ^0.0.9 copied to clipboard

discontinuedreplaced by: cv_native_client

Native client to access platform specific features like clipboard, platform version, etc.

Change Log #

0.0.9 #

  • Fixed linting issues
  • no real code changes

0.0.8 #

  • Fixed linting issues
  • no real code changes

0.0.7 #

  • removed warning from README.md
  • no code changes

0.0.6 #

  • improved native implementation for Web, Android, iOS, macOS, Windows and Linux
  • removed canCopyFromClipboard method
  • added new method getClipboardDataMimeTypes to get mime types of clipboard content
    • mime types are returned as a list of 'VKClipboardMimeType' enum values
    • supported on Android, iOS, macOS, Windows and Linux
  • removed platformVersion method

0.0.5 #

  • added in-development note to readme
  • made code public
  • fix linting issues
  • no real code changes

0.0.4 #

  • Added support for 'canCopyFromClipboard` method
  • Updated readme and example

0.0.3 #

  • Fixed changelog
  • no code changes

0.0.2 #

  • Added readme
  • no code changes

0.0.1 #

  • Initial release
  • API for getting and setting clipboard text
  • API for getting platform version

API Release Notes #

class VkNativeClient {
  Future<String?> getPlatformVersion() {
    return VkNativeClientPlatform.instance.getPlatformVersion();
  }

  Future<String?> getClipboardData() {
    return VkNativeClientPlatform.instance.getClipboardData();
  }

  Future<bool> setClipboardData(String text) {
    return VkNativeClientPlatform.instance.setClipboardData(text);
  }
}
2
likes
130
points
33
downloads

Publisher

verified publishercodevedas.com

Weekly Downloads

Native client to access platform specific features like clipboard, platform version, etc.

Topics

#clipboard

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, js, plugin_platform_interface

More

Packages that depend on vk_native_client