You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
455 B
12 lines
455 B
#import "RNCSafeAreaUtils.h"
|
|
|
|
#import <React/RCTUIManager.h>
|
|
|
|
NSString *const RNCSafeAreaDidChange = @"RNCSafeAreaDidChange";
|
|
|
|
BOOL UIEdgeInsetsEqualToEdgeInsetsWithThreshold(UIEdgeInsets insets1, UIEdgeInsets insets2, CGFloat threshold)
|
|
{
|
|
return ABS(insets1.left - insets2.left) <= threshold && ABS(insets1.right - insets2.right) <= threshold &&
|
|
ABS(insets1.top - insets2.top) <= threshold && ABS(insets1.bottom - insets2.bottom) <= threshold;
|
|
}
|