You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
795 B
Objective-C
34 lines
795 B
Objective-C
//
|
|
// SuperPlayerView.h
|
|
//
|
|
// Created by Lijy91 on 2020/9/4.
|
|
//
|
|
|
|
#import <Flutter/Flutter.h>
|
|
#import "SuperPlayer.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
// FLTSuperPlayerViewController
|
|
@interface FLTSuperPlayerViewController : NSObject <FlutterPlatformView, FlutterStreamHandler, SuperPlayerDelegate>
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
viewIdentifier:(int64_t)viewId
|
|
arguments:(id _Nullable)args
|
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
|
|
|
- (UIView*)view;
|
|
|
|
@end
|
|
|
|
// FLTSuperPlayerViewFactory
|
|
@interface FLTSuperPlayerViewFactory : NSObject
|
|
- (instancetype)initWithMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
|
@end
|
|
|
|
// FLTSuperPlayerView
|
|
@interface FLTSuperPlayerView : SuperPlayerView
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|