dart-native / dart_native

Write iOS&macOS&Android Code using Dart. This package liberates you from redundant glue code and low performance of Flutter Channel.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support API_AVAILABLE

yulingtianxia opened this issue · comments

需要支持 API_AVAILABLE
方便 Flutter 调用时兼容不同版本系统的 API
方案需要预研


Update: 仅使用 Annotation 标记,不需要生成代码:

@NativeAvailable(ios: '10.0')
@NativeUnavailable(ios)
@NativeDeprecated(ios: ['10.0', '10.4'])