#import @interface RCTConvert (Modal) @end @implementation RCTConvert (Modal) RCT_ENUM_CONVERTER(UIModalTransitionStyle, (@{@"coverVertical": @(UIModalTransitionStyleCoverVertical), @"flipHorizontal": @(UIModalTransitionStyleFlipHorizontal), @"crossDissolve": @(UIModalTransitionStyleCrossDissolve), @"partialCurl": @(UIModalTransitionStylePartialCurl) }), UIModalTransitionStyleCoverVertical, integerValue) RCT_ENUM_CONVERTER(UIModalPresentationStyle, (@{@"fullScreen": @(UIModalPresentationFullScreen), @"pageSheet": @(UIModalPresentationPageSheet), @"formSheet": @(UIModalPresentationFormSheet), @"currentContext": @(UIModalPresentationCurrentContext), @"custom": @(UIModalPresentationCustom), @"overFullScreen": @(UIModalPresentationOverFullScreen), @"overCurrentContext": @(UIModalPresentationOverCurrentContext), @"popover": @(UIModalPresentationPopover), @"none": @(UIModalPresentationNone) }), UIModalPresentationFullScreen, integerValue) @end