Skip to main content

Flutter Linux MethodChannel


info

Plugin 코드는 Platform thread에서 실행됩니다.

준비

flutter create -t plugin --platforms=linux <plugin>
cd <plugin>
<plugin>
├── CHANGELOG.md
├── LICENSE
├── README.md
├── <plugin>.iml
├── lib
│   └── <plugin>.dart
├── linux
│   ├── CMakeLists.txt
│   ├── <plugin>_plugin.cc
│   └── include
│   └── <plugin>
│   └── <plugin>_plugin.h
├── pubspec.lock
└── pubspec.yaml
wget https://raw.githubusercontent.com/hhk7734/conf/master/.clang-format -O .clang-format