This is another feature for an app that I’m making, and it is a question builder for appointments. You pick an appointment type or clinical setting and specifics, and AI generates questions based on that information. For the Question Builder, I built the feature in Flutter using a stateful widget so the generated questions can dynamically appear and update on the screen. I created functions to send the user’s input to my backend API and process the returned questions so they can be displayed as a list of individual question cards. I also added state management to track when questions are being generated, store the generated questions, and update the UI without rebuilding the entire app manually. To make the interface easier to use, I implemented a dedicated scrollable section for the generated questions so users can browse through them while keeping the rest of the page in place. One of the main challenges was connecting the asynchronous API response to Flutter’s UI state and making sure the questions appeared correctly after the request finished. I’ve also started working on a health summary generated based on what a user enters. This is the first screen of information where a user adds all their medical conditions, with options to edit or delete. The health summary feature is still ongoing, but hopefully I’ll be back with a devlog soon for that! I don’t think it actually took me like 10 hours but thats how much is logged.