Skip to content

jack-szeto/flutter-pencilkit

 
 

Repository files navigation

Flutter iOS Pencil Kit

PencilKitMJStudio

pub package All Contributors licence

Flutter plugin for using iOS Pencil Kit.

Note 📒

  • This package only provides iOS implementation. If you try use widget of this package other than iOS, you see a Red warning box.
  • iOS Pencil Kit is available from iOS 13.0

Supported Platforms 📱

  • iOS

Features & Todo 🌟

  • Drawing
  • Show/Hide palette
  • Undo/Redo
  • Clear
  • UI properties(background color, scrollability, isOpaque, etc...)
  • Import/Export drawing data
  • Manage drawing tools programmatically

Requirements ✅

  • iOS: Deployment target >= 9.0

Setup & Usage 🎉

flutter pub add pencil_kit

Available Methods

Methods available for PencilKitController.

Method Description Throws
clear() Clear canvas X
show() Show Palette X
hide() Hide Palette X
redo() Redo last drawing action X
undo() Undo last drawing action X
save(): Future<String?> Save drawing data into file system, can return base 64 data if withBase64Data is true O
load(): Future<String?> Load drawing data from file system, can return base 64 data if withBase64Data is true O
getBase64Data(): Future Get current drawing data as base64 string form O

PencilKit Widget Parameters

All the available parameters.

Parameter Description
onPencilKitViewCreated A callback for platform view created. You can store PencilKitController from argument of this callback.
hitTestBehavior iOS UIKitView hitTestBehavior
unAvailableFallback A widget for render UnAvailable state. The default is A red box
alwaysBounceVertical A Boolean value that determines whether bouncing always occurs when vertical scrolling reaches the end of the content.
alwaysBounceHorizontal A Boolean value that determines whether bouncing always occurs when horizontal scrolling reaches the end of the content view.
isRulerActive A Boolean value that indicates whether a ruler view is visible on the canvas.
drawingPolicy The policy that controls the types of touches allowed when drawing on the canvas. This properties can be applied from iOS 14.0
onToolPickerVisibilityChanged A callback for tool picker visibility state changed
onRulerActiveChanged A callback for ruler activate state changed

Example

Check example on pub.dev page or example project repo

Contributors ✨

Thanks goes to these wonderful people (emoji key):

MJ Studio
MJ Studio

🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

About

Flutter plugin for iOS PencilKit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 54.2%
  • Swift 36.3%
  • Ruby 7.3%
  • Objective-C 2.2%