Administrator to manage

Hi there,
I am making a studio app and I am the leader of the group. Therefore, how can I make a screen is for admin or owner to go thought inside, the default users cannot go in.
I have no idea. Thanks.

1 Like

Hey there,
Simple is that
Add a button and a textbox. Then in blocks area set:
When button press do
If textbox. Text = Password (as you like)
Then navigate to screen2
Else
Set alert text to “Sorry, the code is incorrect”
Note: the else block is optional.
My regards!
Hayder

Oh.
This is very simple, and I will try to do it so.
:smile::smile::smile:

1 Like

I was done.
If stored password = “xxxxxxxx”
do button4 visible
else button4 disable

1 Like

Great!
You can set column instead of new screen as well if your app goes slower for users.
Column_main = visible to false
Column_admin = visible to true.
Two column in one screen.