Using Packages Package versioning
url_launcher: ^5.4.0 配置pub管理
plugin1:
path: ../plugin1/ 配置本地库
plugin1:
url: git://github.com/flutter/plugin1.git 配置git库
plugin1:
url: git://github.com/flutter/plugin1.git 配置git库
path: packages/package1 配置为git库的子目录
多个库中的依赖同一个库不同的版本, 就会造成冲突
Unshared libraries (the npm approach) Version lock (the dead end approach) Version constraints (the Dart approach)
指定版本号: widgets 2.0.5 约束版本号: widgets ‘>=2.3.5 <2.4.0’ Semantic versions: widgets ^2.3.5 (相当与>=2.3.5 <3.0.0) Semantic versions: widgets 0.1.2+1 (相当与<1.0.0, 只在版本号小于1.0.0时使用)
Dart packages: 使用dart开发库 Plugin Packages: 使用dart调用本地API
flutter create –template=package hello flutter create –org com.example –template=plugin
defaultTargetPlatform
判断当前平台自定义channels和codecs
MethodChannel是类型不安全的, 类型取决与发送和接收端定义的类型. 需要传类型安全的结构
化的数据需要使用Pigeon
Platform也是使用Texture呈现NativeView, Texture使用SurfaceView来呈现 点击事件通过Channel传递
Platform adaptations
Flutter PlatformView: How to create Widgets from Native Views
5分钟彻底搞懂Flutter中PlatFormView与Texture
PlatformView