I got confused on when to use which option to store information, and so I asked google the question: 'flutterflow, when to use appstate' and it gave the answer: ''App state variables should be used in scenarios where the same data needs to be accessed and modified from multiple locations within the app. For instance, in a shopping cart app, items in a user's cart are usually accessible across different pages.''
my question; what happens if i share all the information of the items, from itemdetails->general feed->shopping cart, through parameters?
cause my app is kinda made of any tutorial i followed on youtube, and i dont really understand what i did and if all the information is stored as beneficial as possible.