Flutter Desktop Plugin

Aseem Wangoo
CodeChai
Published in
4 min readMar 14, 2020

--

Create a Flutter Desktop Plugin!

How to write my own Flutter Desktop Plugin ? Hmmm….

All in one Flutter resource: https://flatteredwithflutter.com/flutter-desktop-plugin/

Pre-Requisite…

In case you are still new to Flutter Desktop and want to set up first, check out this article here…

Begin…

At the end of this article, you should be able to create your plugins for Desktop….

We will structure this article into :

  1. Creating Desktop Plugin
  2. Using Desktop Plugin in Flutter application
  3. Enable support for Windows
Flutter Desktop Plugin

Creating Desktop Plugin

We need to run a command,

flutter create --org com.flatteredwithflutter --template=plugin init_dsktp_plugin

--

--