Posts

Showing posts from July, 2025

How (A)I built a simple Flutter app over a weekend with zero manual code!

Image
I wanted to create a simple "Goal tracking" app for personal use. An app which will allow me to add goals and mark them manually whenever I achieve them. So I fired up Gemini CLI . I don't remember the actual prompts nor does Gemini CLI save the history, but the initial prompt was something like this. Prompt:   "You are an expert Flutter developer. Create a simple "stock goal tracking" app to allow users to add manual goals. It should allow users to mark the goal as achieved." Within a few seconds, it not only created the app but also added some built-in goals! But it used "shared preferences" ( a different storage usually for minor things). So I had to prompt it to use the sqlite database (personal preference).                                                                 It also added a "Title" as well as "Description"....