1234567891011121314151617181920212223242526272829 |
- #import <React/RCTConvert.h>
-
- @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
-
|