mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-17 22:02:42 -06:00
* Update for libui-node 0_1_0 - Use native eventloop - position got removed * Update libui-node version to 0.1.0 * babel rebuild * Cleanup * Fix non-check menu items * Make quit menu work * Add onShouldQuit to App and expose to user * Remove bin
660 B
660 B
App
The app is the container for the entire program and holds Windows and Menus.
import React, { Component } from 'react';
import { render, Window, App } from 'proton-native';
class Example extends Component {
render() {
return (
<App>
<Window title="Example" size={{ w: 500, h: 500 }} />
</App>
);
}
}
render(<Example />);
Props
Reference
onShouldQuit
Called when the quit menu item is called, right before the entire app quits.
| Type | Required | Default |
|---|---|---|
| function() | No | () => {} |