How to get components to show only when App is opened for the first time?

Hi!

I would like some components of my app (like an alert) to only show the first time the user opens the downloaded app!

Does anyone know how I can go about doing this?

Please advise,
Hobi B

1 Like

Use the tinydb to set a tag value on first run. Then test for this value on startup, if not there, show the component, if there don't show it.

2 Likes

Something like this -
image

You can save adding the else statement if you set the component's default visible value to false

5 Likes