https://github.com/dart-lang/native
Dart packages related to FFI and native assets bundling.
https://github.com/dart-lang/native
Last synced: 3 months ago
JSON representation
Dart packages related to FFI and native assets bundling.
- Host: GitHub
- URL: https://github.com/dart-lang/native
- Owner: dart-lang
- License: bsd-3-clause
- Created: 2023-03-21T18:04:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-30T23:39:37.000Z (3 months ago)
- Last Synced: 2025-10-01T01:15:20.237Z (3 months ago)
- Language: Dart
- Size: 24.1 MB
- Stars: 222
- Watchers: 29
- Forks: 82
- Open Issues: 513
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
[](https://coveralls.io/github/dart-lang/native?branch=main)
## Overview
This repository is home to Dart packages related to FFI and native assets
building and bundling.
## Packages
| Package | Description | Issues | Version |
| --- | --- | --- | --- |
| [code_assets](pkgs/code_assets/) | This package contains the Dart API for code assets in `hook/build.dart` and `hook/link.dart`. | [][code_assets_issues] | [](https://pub.dev/packages/code_assets) |
| [data_assets](pkgs/data_assets/) | This package contains the Dart API for data assets in `hook/build.dart` and `hook/link.dart`. | [][data_assets_issues] | [](https://pub.dev/packages/data_assets) |
| [ffi](pkgs/ffi/) | Utilities for working with Foreign Function Interface (FFI) code. | [][ffi_issues] | [](https://pub.dev/packages/ffi) |
| [ffigen](pkgs/ffigen/) | Generator for FFI bindings, using LibClang to parse C, Objective-C, and Swift files. | [][ffigen_issues] | [](https://pub.dev/packages/ffigen) |
| [hooks](pkgs/hooks/) | This package contains the API for `hook/build.dart` and `hook/link.dart`. | [][hooks_issues] | [](https://pub.dev/packages/hooks) |
| [hooks_runner](pkgs/hooks_runner/) | This package is the backend that invokes `hook/build.dart` and `hook/link.dart` from Dart and Flutter. | [][hooks_runner_issues] | [](https://pub.dev/packages/hooks_runner) |
| [jni](pkgs/jni/) | A library to access JNI from Dart and Flutter that acts as a support library for package:jnigen. | [][jni_issues] | [](https://pub.dev/packages/jni) |
| [jnigen](pkgs/jnigen/) | A Dart bindings generator for Java and Kotlin that uses JNI under the hood to interop with Java virtual machine. | [][jnigen_issues] | [](https://pub.dev/packages/jnigen) |
| [native_doc_dartifier](pkgs/native_doc_dartifier/) | A library that converts code snippets from other languages into Dart. | [][native_doc_dartifier_issues] | [](https://pub.dev/packages/native_doc_dartifier) |
| [native_toolchain_c](pkgs/native_toolchain_c/) | A library to invoke the native C compiler installed on the host machine. | [][native_toolchain_c_issues] | [](https://pub.dev/packages/native_toolchain_c) |
| [objective_c](pkgs/objective_c/) | A library to access Objective C from Flutter that acts as a support library for package:ffigen. | [][objective_c_issues] | [](https://pub.dev/packages/objective_c) |
| [swift2objc](pkgs/swift2objc/) | A tool for generating bindings that allow interop between Dart and Swift code. | [][swift2objc_issues] | [](https://pub.dev/packages/swift2objc) |
| [swiftgen](pkgs/swiftgen/) | A tool for generating bindings that allow interop between Dart and Swift code. | [][swiftgen_issues] | [](https://pub.dev/packages/swiftgen) |
[code_assets_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Acode_assets
[data_assets_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Adata_assets
[ffi_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Affi
[ffigen_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Affigen
[hooks_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ahooks
[hooks_runner_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ahooks_runner
[jni_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ajni
[jnigen_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ajnigen
[native_doc_dartifier_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Anative_doc_dartifier
[native_toolchain_c_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Anative_toolchain_c
[objective_c_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aobjective_c
[swift2objc_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aswift2objc
[swiftgen_issues]: https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aswiftgen
## External packages
Packages not on this repo but also related to FFI and native assets. ❤️
| Package | Description | Version |
| --- | --- | --- |
| [native_toolchain_cmake](https://github.com/rainyl/native_toolchain_cmake) | A library to invoke CMake for Dart Native Assets. | [](https://pub.dev/packages/native_toolchain_cmake) |
| [native_toolchain_go](https://github.com/csnewman/flutter-go-bridge/tree/master/native_toolchain_go) | A library to invoke the native Go compiler installed on the host machine. | [](https://pub.dev/packages/native_toolchain_go) |
| [native_toolchain_rust](https://github.com/irondash/native_toolchain_rust) | A library to invoke the native Rust compiler installed on the host machine. | [](https://pub.dev/packages/native_toolchain_rust) |
## Publishing automation
For information about our publishing automation and release process, see
https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.
For additional information about contributing, see our
[contributing](CONTRIBUTING.md) page.