@stackflow/plugin-basic-ui
전역 스택 상태를 사용하여 활동 내에서 UI를 렌더링해요. 기본적으로 cupertino
및 android
테마를 제공해요.
설치
npm install @stackflow/plugin-basic-ui
사용법
어플리케이션 앱바 형태의 컴포넌트를 제공해요.
stackflow.ts
import { stackflow } from "@stackflow/react";
import { basicUIPlugin } from "@stackflow/plugin-basic-ui";
const { Stack, useFlow } = stackflow({
// ...
plugins: [
// ...
basicUIPlugin({
theme: "cupertino",
}),
],
});
basicUIPlugin
옵션
Option | Type | Description |
---|
AppScreen
import { AppScreen } from "@stackflow/plugin-basic-ui";
const Something = () => {
return (
<AppScreen appBar={{ title: "Home" }}>
<div>Hello, World</div>
</AppScreen>
);
};
appBar
Option | Type | Description |
---|
모달 및 바텀시트 컴포넌트도 제공해요.
Modal
import { Modal } from "@stackflow/plugin-basic-ui";
const Something = () => {
return (
<Modal>
<div>Hello, World</div>
</Modal>
);
};
BottomSheet
import { BottomSheet } from "@stackflow/plugin-basic-ui";
const Something = () => {
return (
<BottomSheet>
<div>Hello, World</div>
</BottomSheet>
);
};