diff --git a/packages/app/src/components/Layout/bottomBar/index.jsx b/packages/app/src/components/Layout/bottomBar/index.jsx
index 514611ea..f878f1a4 100755
--- a/packages/app/src/components/Layout/bottomBar/index.jsx
+++ b/packages/app/src/components/Layout/bottomBar/index.jsx
@@ -9,14 +9,25 @@ import { Icons, createIconRender } from "components/Icons"
import { WithPlayerContext, Context } from "contexts/WithPlayerContext"
import PlayerView from "pages/@mobile-views/player"
+import CreatorView from "pages/@mobile-views/creator"
import "./index.less"
-const PlayerButton = (props) => {
- const openPlayerView = () => {
- app.DrawerController.open("player", PlayerView)
- }
+const openPlayerView = () => {
+ app.DrawerController.open("player", PlayerView)
+}
+const openCreator = () => {
+ app.DrawerController.open("creator", CreatorView, {
+ props: {
+ bodyStyle: {
+ minHeight: "unset",
+ height: "50vh"
+ }
+ }
+ })
+}
+const PlayerButton = (props) => {
React.useEffect(() => {
openPlayerView()
}, [])
@@ -63,6 +74,23 @@ const AccountButton = (props) => {
ActionSheetRef.current.close()
}
},
+ {
+ key: "account",
+ text: <>