Ivonna is a hybrid development framework of native and react native, which supports IOS and Android.
npm install @ivonna/navigationimport { AppRegistry } from '@ivonna/navigation';
AppRegistry.registerComponent('Home', HomeComponent);
AppRegistry.registerComponent('Mine', MineComponent);import { Navigation } from '@ivonna/navigation';
// ...
Navigation.push('Home');import { Container } from '@ivonna/navigation';
const { moduleStore, setModuleStore } = Container.useContainer('Common'); // `Common` is module nameSee the contributing guide to learn how to contribute to the repository and the development workflow.
MIT