Hello,
I’m developing an app in Kodular where I display a list of tasks from Firebase in a ListView.
Each task is stored as a dictionary (example: {“title”:“Task1”,“description”:“Description1”}).
I want that when a user clicks on a task in the ListView:
-
The Details screen opens
-
The task’s title and description are displayed
I tried passing the dictionary directly using “Open another screen with start value”, but the app crashes.
I use JSONTextDecode to convert the JSON from Firebase into a dictionary.
My question:
What is the best way in Kodular to pass a selected dictionary from a ListView to another screen safely and simply, without crashing?
Thanks for your help!