Crafting Intuitive and Memorable Native Apps with React Native and Expo

Jan 27, 2025

Crafting Intuitive and Memorable Native Apps with React Native and Expo

Learn how to create intuitive and engaging native apps with React Native and Expo. Explore animations, shared element transitions, and directional routing for a seamless user experience.

Author

Prince Kumar Thakur
Prince Kumar ThakurTechnical Content Writer

Editor’s Note: This blog is an adapted transcript of Harsh Pathak's talk at the GeekyAnts React Native Meetup. Harsh, a passionate Frontend Engineer, introduced Zustand, a state management library that simplifies workflows and optimizes performance for React applications. While refined for clarity and brevity, this transcript captures the depth and essence of the session.

Hello! Today, we’ll dive into Zesting internals, Zesting, and Netherhood. Before diving in, let me introduce myself. I’m Harsh Patak, a Frontend Engineer who loves creating web-based applications. So, what is Zesting? Does anyone know?

State management is a cornerstone of frontend development, yet traditional tools like Redux and Context API often come with challenges that hinder efficiency. Harsh began his talk by addressing these pain points, explaining why Zustand emerged as a better alternative for modern development.

Redux, with its boilerplate-heavy setup, requires developers to wrap their applications in multiple providers, configure complex middleware, and manage global stores. While Context API simplifies some of these processes, it struggles with scalability in larger applications. Both tools share common drawbacks—slower initial load times due to large bundle sizes and the notorious “zombie child problem,” where async operations can result in stale or incorrect data in child components.

How Zustand Redefines State Management

When I think about state management, Zustand stands out for its simplicity and performance. Its modular architecture does away with the need for multiple providers by replacing global stores with module-level closures. This means the state binds to the lexical scope, allowing components to access only the specific slices of state they need, leading to more granular subscriptions and improved performance.

One of my favorite aspects of Zustand is its use of modern data structures. Unlike Redux, which relies on arrays to store listeners and often causes duplicate re-renders, Zustand uses sets. This enables constant-time operations for adding and deleting listeners, which not only improves garbage collection but also reduces JS overhead and significantly boosts app performance.

A Hands-On Demonstration

To illustrate Zustand’s simplicity, Harsh walked the audience through building a mini-state management library inspired by Zustand. By creating a store with closures at the module level, defining state management functions, and implementing hooks for React, he demonstrated how developers can efficiently manage state without the complexities of traditional libraries.

Here’s an example of a basic store setup in Zustand:

const createStore = (initialState) => {
  let state = initialState;
  const listeners = new Set();

  const setState = (newState) => {
    state = { ...state, ...newState };
    listeners.forEach((listener) => listener());
  };

  const subscribe = (listener) => {
    listeners.add(listener);
    return () => listeners.delete(listener);
  };

  return { setState, subscribe, getState: () => state };
};

This straightforward implementation highlights Zustand’s minimalistic approach, avoiding the boilerplate associated with Redux while improving performance and maintainability.

Why Zustand Matters

Zustand tackles the challenges of traditional state management tools by prioritizing efficiency, simplicity, and scalability. I appreciate how it reduces bundle sizes, eliminates redundant renders, and enhances app responsiveness, making it an indispensable asset in the React ecosystem.

For me, Zustand isn’t just a state management tool—it reflects the evolving needs of modern development. It empowers me to build faster, smarter, and more performant applications by minimizing overhead and streamlining workflows.

Thank you for being a part of this session. Let’s keep exploring tools that redefine the future of frontend development together!

Subscribe to Our Newsletter

More from the engineering frontline.

Dive deep into our research and insights on design, development, and the impact of various trends to businesses.
Insight
Why AI Agents Fail in Production: Building Systems That Recover | Pushkar
Sep 10, 2026

Why AI Agents Fail in Production: Building Systems That Recover | Pushkar

Pushkar’s thegeekconf mini talk explores why AI agents that perform well in demos often struggle in production, and how loud failures, clean context, step monitoring, guardrails, and better agent loops can make them more reliable and predictable.

Insight
Building Is Not Shipping: An AI Agent for App Store Submissions | Gracey Dugar
Sep 8, 2026

Building Is Not Shipping: An AI Agent for App Store Submissions | Gracey Dugar

Gracey Dugar's thegeekconf mini 2026 talk explores why app store submission stalls most AI agent workflows, what an agent needs to finish the job, and a live demo from a single prompt to a published app.

Insight
No More Prompt-and-Wait: Building Autonomous Agents That Act | Kamal Shree
Sep 4, 2026

No More Prompt-and-Wait: Building Autonomous Agents That Act | Kamal Shree

Kamal Shree’s Geekconf mini’s talk explores the shift to autonomous agents, from what separates agents from chatbots, the anatomy and grounding behind them, and how to choose between no-code, low-code, and pro-code build paths.

Insight
From UX to AX: Designing Applications for a World of AI Agents
Sep 4, 2026

From UX to AX: Designing Applications for a World of AI Agents

Learn how Ashita Prasad’s thegeekconf mini 2026 session explores agentic experience and three approaches to building agent-ready applications: Web MCP, MCP Apps, and A2UI.

Insight
Agentic AI: From Copilot to Autopilot | Naveen Kumar Bhansali
Sep 4, 2026

Agentic AI: From Copilot to Autopilot | Naveen Kumar Bhansali

Learn how Naveen Kumar Bhansali’s thegeekconf mini 2026 session explores AI-driven software development, context engineering, enterprise adoption, agentic workflows, and the shift toward building products for AI agents.

Insight
Agentic Commerce: What Happens When Your Agent Tries to Spend Money? | Roopasree Ranganna
Sep 4, 2026

Agentic Commerce: What Happens When Your Agent Tries to Spend Money? | Roopasree Ranganna

Learn how Roopasree Ranganna’s thegeekconf mini 2026 session explores agentic commerce, delegated payments, trust, identity, mandates, and the systems needed to enable AI agents to transact.

Events
 From MVP to Scale: Designing Architecture for AI-First Products
May 11, 2026

 From MVP to Scale: Designing Architecture for AI-First Products

A panel of architects and engineering leaders at thegeekconf mini 2026 discuss how to build and scale AI-first products — from MVP decisions to production-level challenges. The conversation covers data quality, model selection, security, token economics, and the mindset teams need to navigate a fast-moving AI landscape.

The Right Conversation Can

Save You Six Months.

Book a call
Crafting Intuitive and Memorable Native Apps with React Native and Expo - GeekyAnts