It seems that this piece of code:
return React.createElement(Stack.Screen, { key: name, name: name, component: C, options: Opts });
throws warnings in minified bundle.
Changing the code to the following, seems to resolve the issue.
return React.createElement(Stack.Screen, { key: name, name: name, options: Opts },(props) => <C {...props} />);
Any thoughts on this?