5 followers
I am a developer focusing on Flutter after years with ReactJS. Specializes in testing Flutter apps, presented at Google Dev Conference 2021. Enjoys outdoor activities like biking and hiking.
In Next.js, the ability to pre-render pages can greatly improve SEO and performance. Using getServerSideProps, you can fetch data at request time,...
Debouncing is a technique that ensures a function is only called after a certain period of time has passed since the last event. It’s often used in...
When you’re building apps that need to work across different screen sizes (phones, tablets, etc.), LayoutBuilder is a powerful tool to help create...
Next.js: Static Site Generation (SSG) with Incremental Static Regeneration (ISR). This allows you to build static pages that can be updated after...
Scenario: Fetching Data Instead of repeatedly writing code for data fetching in every component, you can encapsulate that logic in a custom hook. This...
A useful skill in Flutter is mastering Hero Animations, which allow you to create smooth and engaging transitions between screens by animating a...