Рет қаралды 376
In this video Adalo customer advocate Kyle Belford and CTO Jason Gilmore review five best practices that makers can begin applying today to make their apps more performant. Kyle introduces these best practices by walking through two apps he's personally created and uses every day!
Here is a short summary of the topics we discussed:
Tip #1. Model your app design patterns after high traffic apps you admire. There are very good reasons why high traffic apps break logic across multiple screens rather than try to bundle a bunch of complicated logic into a single screen.
Tip #2. Take advantage of third-party components such as the list element paginator. We are currently working on native pagination with plans on releasing it in early February!
Tip #3. Be sure to optimize your images. The blog post (www.adalo.com/...) contains links to a few online free image compressors, and you can also take advantage of recent improvements to Adalo's own image optimization processes
Avoid lists within lists.
Tip #4. Always consider how you can refactor the user interface to streamline logic
Tip #5. Maintain counts inside record properties instead of constantly calculating them on the fly. You don't want to constantly derive counts, aggregates, and so forth.