| 123456789101112131415161718192021222324252627 |
- //
- // AmapViewFactory.h
- // amap_location
- //
- // Created by i2edu on 2020/4/23.
- //
- #import <Foundation/Foundation.h>
- #import <Flutter/Flutter.h>
- #import <MAMapKit/MAMapKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface FlutterAmapView : NSObject<FlutterPlatformView>
- -(instancetype _Nullable)initWithFrame:(CGRect)frame viewindentifier:(int64_t)viewId arguments:(id _Nullable)args binaryMessenger:(NSObject<FlutterBinaryMessenger> *_Nonnull)messenger;
- -(nonnull UIView*) view;
- @end
- @interface FlutterAmapViewFactory : NSObject<FlutterPlatformViewFactory>
- -(instancetype _Nullable )initWithMessenger:(NSObject<FlutterBinaryMessenger>*_Nonnull)messenger;
- @end
- NS_ASSUME_NONNULL_END
|