Best of Mobile DevelopmentMarch 2026

  1. 1
    Article
    Avatar of expodevExpo.dev·12w

    React Native has never felt this Native

    Expo SDK 55 has been released alongside Expo Router v55, bringing significantly improved native iOS navigation capabilities to React Native development. SDK 56 is expected to bring equivalent Android improvements. The release is seen as a milestone that closes the gap between Expo/React Native and fully native iOS app development.

  2. 2
    Article
    Avatar of ionicIonic Blog·11w

    Announcing Ionic Framework 8.8

    Ionic Framework 8.8 is released as the final minor version in the Ionic 8 lifecycle. Key additions include new drag lifecycle events (ionDragStart, ionDragMove, ionDragEnd) for Sheet and Card Modals, enhanced dual knob support in Range with new CSS Shadow Parts and host classes, and new pull events (ionPullStart, ionPullEnd) for Refresher with deprecation of ionStart. Numerous new CSS Shadow Parts and classes have been added across Content, Datetime, Item, Select, and Toast components. Angular's ModalController and PopoverController now support custom Injectors for scoped dependency injection. Stencil was updated from v4.38 to v4.43. Looking ahead, Ionic Framework 9 will introduce a modular architecture enabling custom theming and React Router 6 support.

  3. 3
    Video
    Avatar of asaprogrammerAs a Programmer·10w

    Full Stack React Native Tutorial for Beginners in 2026

    A beginner-friendly full-stack mobile app tutorial using React Native and Expo. Covers building a grocery list app with four screens (authentication, list, planner, insights) that runs on both iOS and Android. The tech stack includes PostgreSQL with Drizzle ORM on Neon, Clerk for authentication (Google, Apple, GitHub OAuth), NativeWind (Tailwind CSS for React Native), and Zustand for state management. Topics covered include project setup with Expo CLI, file-based routing, React vs React Native component differences, NativeWind configuration, Clerk authentication integration with pre-built UI components, development builds, and GitHub deployment.

  4. 4
    Video
    Avatar of notjustdevnotJust.dev·9w

    State of React Native - What's new in 2026

    A walkthrough of the 2025 State of React Native survey results, covering developer demographics, platform targets, popular libraries for navigation (Expo Router dominating at 71%), styling (NativeWind growing to 42%), animations (React Native Reanimated at 93%), testing tools, analytics, build tooling (EAS Build leading), and AI code generation trends. Key findings include 80% adoption of the new architecture, 86% of developers on macOS, Expo CLI used by ~90% of respondents, and growing AI-assisted development workflows.

  5. 5
    Article
    Avatar of aspnetASP.NET Blog·10w

    Pin Clustering in .NET MAUI Maps

    NET MAUI 11 Preview 2 introduces pin clustering for the Map control on Android and iOS/Mac Catalyst. A single property `IsClusteringEnabled="True"` activates automatic grouping of nearby pins into cluster markers with count badges. Pins can be assigned a `ClusteringIdentifier` to form independent clusters by category (e.g., coffee shops vs. parks). A `ClusterClicked` event provides access to the pins in a cluster, their geographic center, and the ability to suppress default zoom behavior. On Android, a custom grid-based algorithm handles clustering; on iOS/Mac Catalyst, native MapKit `MKClusterAnnotation` support is used. The feature is available in .NET 11 Preview 2 with sample code in the maui-samples repository.