@stackflow/basic-ui
v0.14.0
Published
Render the UI within the activity using the global stack state. It provides `cupertino` and `android` themes by default.
Downloads
392
Keywords
Readme
@stackflow/basic-ui
Render the UI within the activity using the global stack state. It provides cupertino
and android
themes by default.
Usage
import { AppScreen } from "@stackflow/basic-ui";
const Something: React.FC = () => {
return (
<AppScreen theme="cupertino" appBar={{ title: "Home" }}>
<div>Hello, World</div>
</AppScreen>
);
};