2 UIViewController: ScreenOrientation + RN-home-indicator

Hi guys, I’ve been searching for how to implement the following for a day. Don’t know how to do it. T.T

expo-screen-orientation for iOS requires:
replace
UIViewController *rootViewController = [UIViewController new];
with
UIViewController *rootViewController = [[EXScreenOrientationViewController alloc] init];

it works fine until having to use
react-native-home-indicator that requires:
replace
UIViewController *rootViewController = [UIViewController new];
with
UIViewController *rootViewController = [HomeIndicatorViewController new];

How to write two things? Is it possible?
Any help is appreciated!
T.T