dart_objc 0.0.4 copy "dart_objc: ^0.0.4" to clipboard
dart_objc: ^0.0.4 copied to clipboard

outdated

Write Objective-C Code using Dart. This package liberates you from native code and low performance channel.

dart_objc #

Write Objective-C Code using Dart. This package liberates you from native code and low performance channel.

Still under development!!!

Requirements #

Flutter 1.10.14 (channel dev, using 2.6.0-dev.1.0)

Getting Started #

Dart code:

// new Objective-C object.
RuntimeStub stub = RuntimeStub();

// Define Dart function according to Objective-C BarBlock signature.
Function testFunc = (NSObject a) {
    print('hello block! ${a.toString()}');
    return 101;
};

// Dart function will be converted to Objective-C block.
Block block = stub.fooBlock(testFunc);
// invoke Objective-C block.
int result = block.invoke([stub]);
print(result); 

// support built-in structs.
CGRect rect = stub.fooCGRect(CGRect.allocate(4, 3, 2, 1));
print(rect);

Objective-C code:

@interface RuntimeStub ()
@end
@implementation RuntimeStub
- (CGRect)fooCGRect:(CGRect)rect
{
    NSLog(@"%s %f, %f, %f, %f", __func__, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
    return (CGRect){1, 2, 3, 4};
}

typedef int(^BarBlock)(NSObject *a);

- (BarBlock)fooBlock:(BarBlock)block
{
    dispatch_async(dispatch_get_global_queue(QOS_CLASS_DEFAULT, 0), ^{
        int result = block([NSObject new]);
        NSLog(@"---result: %d", result);
    });
    BarBlock bar = ^(NSObject *a) {
        NSLog(@"bar block arg: %@", a);
        return 404;
    };
    return bar;
}
@end

TODO List #

  • Type support:Block
  • Type support:Struct
  • Delegate callback
  • Memory management
  • Main Thread Check
  • Generate Dart code from ObjectiveC/C++ Headers.
  • Unit test.
  • Documents.

Article #

1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Write Objective-C Code using Dart. This package liberates you from native code and low performance channel.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ffi, flutter

More

Packages that depend on dart_objc