zehfernandes / sketch-module-web-view

A sketch module for creating an complex UI with a webview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sketch-module-web-view

A Sketch module for creating a complex UI with a webview. The API is mimicking the BrowserWindow API of Electron.

Installation

To use this module in your Sketch plugin you need a bundler utility like skpm and add it as a dependency:

npm install -S sketch-module-web-view

The version 2.x is only compatible with Sketch >= 51. If you need compatibility with previous versions of Sketch, use the version 1.x

Usage

import BrowserWindow from 'sketch-module-web-view'

export default function() {
  const options = {
    identifier: 'unique.id',
  }

  const browserWindow = new BrowserWindow(options)

  browserWindow.loadURL('./my-screen.html')
}

Documentation

API References

License

MIT

About

A sketch module for creating an complex UI with a webview


Languages

Language:JavaScript 100.0%