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.
31 lines
454 B
Objective-C
31 lines
454 B
Objective-C
//
|
|
// BMFEdgeInsets.h
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zhangbaojin on 2020/3/3.
|
|
//
|
|
|
|
#import "BMFModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BMFEdgeInsets : BMFModel
|
|
|
|
/// top
|
|
@property (nonatomic, assign) CGFloat top;
|
|
|
|
/// left
|
|
@property (nonatomic, assign) CGFloat left;
|
|
|
|
/// bottom
|
|
@property (nonatomic, assign) CGFloat bottom;
|
|
|
|
/// right
|
|
@property (nonatomic, assign) CGFloat right;
|
|
|
|
- (UIEdgeInsets)toUIEdgeInsets;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|