dart_native_gen 0.1.2 dart_native_gen: ^0.1.2 copied to clipboard
Automatic type conversion solution for dart_native based on source_gen through annotation.
dart_native_gen #
Annotation for dart_native.
Description #
Automatic type conversion solution for dart_native based on source_gen through annotation.
Getting Started #
- Add
build_runner
package todev_dependencies
in yourpubspec.yaml
.
dev_dependencies:
# Add this line
build_runner:
- Annotate a Dart wrapper class with
@native
. If this wrapper is generated by @dartnative/codegen, skip to next.
@native
class RuntimeSon extends RuntimeStub {
RuntimeSon([Class isa]) : super(Class('RuntimeSon'));
RuntimeSon.fromPointer(Pointer<Void> ptr) : super.fromPointer(ptr);
}
- Annotate your own entry(such as
main()
) with@nativeRoot
:
@nativeRoot
void main() {
runApp(App());
}
- Run this command to generate files into your source directory:
flutter packages pub run build_runner build --delete-conflicting-outputs
Suggest you running the clean command before build:
flutter packages pub run build_runner clean
- Call function generated in
xxx.dn.dart
:
@nativeRoot
void main() {
// Function name is generated by name in pubspec.yaml.
runDartNativeExample();
runApp(App());
}
Installation #
Add packages to dependencies
in your pubspec.yaml
example:
dependencies:
dart_native_gen: any