nandi/vflutter_ffipublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Initial commit: V -> Flutter FFI plugin ad0ccda · on main · nandi · 3h ago
pubspec.yaml · 27 lines · 569 BYAML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: vflutter_ffi
description: Write application logic in V and call it from Flutter over dart:ffi.
version: 0.1.0
environment:
  sdk: '>=3.3.0 <4.0.0'

dependencies:
  ffi: ^2.1.0

dev_dependencies:
  ffigen: ^13.0.0

# Marks this as an FFI plugin: no platform channels, no Dart-side registration,
# the native build is wired per platform below.
flutter:
  plugin:
    platforms:
      android:
        ffiPlugin: true
      ios:
        ffiPlugin: true
      linux:
        ffiPlugin: true
      macos:
        ffiPlugin: true
      windows:
        ffiPlugin: true