I’m not sure if you guys understand my title, but here is what I need.
I’m basically saying on how can I let users share what they have written to other user that use the app. Like for example sharing an idea to all the app users etc.
Basically you want to implement something like a chat app. This means you need to use a common data source such as Firebase and monitor a certain bucket in Firebase that stores user’s typed data.
Once any new data is saved, you will show it in the app to other users.
Thanks for the info @tatiang, but when I look into my components tab, I can’t see Realtime DB. I think this is only for the Snap to Place. I am using the Drag and Drop. What can I use instead of the Realtime DB for Drag and Drop?
You need to connect your project with a Firebase database by supplying API Keys and Database URL and then do something like this
The database key will be created automatically if not available.
If you start this very simple project from your computer and from your mobile at the same time you will see whatever you type in your computer will show in the mobile and vise versa. https://x.thunkable.com/projectPage/61d18b1cff08e90011a5e6b9
In your example, your blocks are trying to set a component that expects and array of strings to a single string. This wont work. The listViewers always expect an array/list of items, even when there’s only 1 item, it should still be applied in the form of an array.
So your List Viewer will only show one single item and every time you update the Text Input and saved it back to the database you will be overwriting the existing data.