| Initial commit: V -> Flutter FFI plugin | 1 | name: vflutter_ffi |
| 2 | description: Write application logic in V and call it from Flutter over dart:ffi. | |
| 3 | version: 0.1.0 | |
| 4 | environment: | |
| 5 | sdk: '>=3.3.0 <4.0.0' | |
| 6 | ||
| 7 | dependencies: | |
| 8 | ffi: ^2.1.0 | |
| 9 | ||
| 10 | dev_dependencies: | |
| 11 | ffigen: ^13.0.0 | |
| 12 | ||
| 13 | # Marks this as an FFI plugin: no platform channels, no Dart-side registration, | |
| 14 | # the native build is wired per platform below. | |
| 15 | flutter: | |
| 16 | plugin: | |
| 17 | platforms: | |
| 18 | android: | |
| 19 | ffiPlugin: true | |
| 20 | ios: | |
| 21 | ffiPlugin: true | |
| 22 | linux: | |
| 23 | ffiPlugin: true | |
| 24 | macos: | |
| 25 | ffiPlugin: true | |
| 26 | windows: | |
| 27 | ffiPlugin: true |