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.
|
//
|
|
// BMFEdgeInsets.m
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zhangbaojin on 2020/3/3.
|
|
//
|
|
|
|
#import "BMFEdgeInsets.h"
|
|
|
|
@implementation BMFEdgeInsets
|
|
|
|
- (UIEdgeInsets)toUIEdgeInsets{
|
|
return UIEdgeInsetsMake(self.top, self.left, self.bottom, self.right);
|
|
}
|
|
|
|
@end
|