Most shopping App's are a way too complex. Not this one. This one is simple and easy to use which is critical if you want to have something practical. We reduced it to what you need for shopping for easy and stress free shopping. Happy shopping, let's start. most popular shopping apps, todo list, Shopping made easy.
I also show some inside tips how I developed this App. And showing some features version 3.0.0 will use. Yes, it's HTML5 + Angular JS with a new article data storage format in JSON.
1. After you have started the App it just shows an empty screen. From here you can add new entries, or load a template.
2. Then select all articles you need to shop.
3. If you are ready for shopping, just klick "OK".
The list will show only these entries which are marked.
4. While shopping you deselect any articles you have in your basket until the counter reaches zero.
5. That's it. Happy shopping!
Apples Apricot Avocado Bananas Blueberries Cherries Grapefruit ...
Prototype running in Safari browser.
There are many complicated data storage file formats for a simple article list. Here is a simple one I designed, and is works.
{ "header": { "lang":"de_DE", "name":"Einkaufsliste", "version":"1.0.6" }, "data": [ {"done":false,"name":"Ananas Scheiben","price":2.95,"canPurchase":true,"soldOut":false,"properties":["v", "k"],"image":""}, {"done":false,"name":"Ananas Würfel","price":2.65,"canPurchase":true,"soldOut":false,"properties":["v", "k"],"image":""}, ... {"done":false,"name":"Zwiebeln","price":1.20,"canPurchase":true,"soldOut":false,"properties":["v"],"image":""} ] }
If you have any questions please leave a comment below.