Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 738 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 738 Bytes

STTextView Plugin Template

This is a template repository for STTextView Plugin. It consists of a Dummy Plugin implementation that is a good starting point for a new Plugin.

Content

  1. DummyPlugin SwiftPM package
  2. Companion DemoApp with the setup STTextView, ready to play with a Plugin.
    1. Add a plugin as an app dependency
    2. Add plugin to STTextView instance in file EditorViewController.swift
    import MyPlugin
    
    textView.addPlugin(
      MyPlugin()
    )