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.

10 lines
275 B

#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, RNCSafeAreaViewEdges) {
RNCSafeAreaViewEdgesTop = 0b1000,
RNCSafeAreaViewEdgesRight = 0b0100,
RNCSafeAreaViewEdgesBottom = 0b0010,
RNCSafeAreaViewEdgesLeft = 0b0001,
RNCSafeAreaViewEdgesAll = 0b1111,
};