Skip to main content

5 posts tagged with "Routing"

The 'Routing' tag page includes a variety of articles and tutorials that provide in-depth knowledge about networking routing, from basics to advanced concepts.

View All Tags

Angular Routing: A Step-by-Step Guide

· 12 min read
Engineering Team

Design Angular routing with lazy features, typed parameters, resolvers only where useful, guards for UX, and explicit SSR behavior. This revised guide emphasizes supported APIs, production tradeoffs, and an upgrade-friendly path without tying the advice to a calendar year.

React Router: A Complete Guide

· 9 min read
Engineering Team

This tutorial will provide a comprehensive guide to React Router, a popular routing library for React development. React Router allows developers to implement routing in their React applications, enabling navigation between different components or pages. We will cover everything from installation to advanced topics such as nested routing, programmatic navigation, and route configurations.

10 Essential React Libraries You Should Know

· 21 min read
Engineering Team

In this tutorial, we will explore 10 essential React libraries that every software developer should be familiar with. We will cover UI component libraries, state management libraries, routing libraries, form libraries, testing libraries, and animation libraries. Each library will be explained in detail, with code examples and step-by-step documentation.

Understanding Flutter Navigation and Routing

· 5 min read
Full Stack Developer

Flutter’s new Navigator and Router API is described in detail in this post. These new functionalities may have been referred to as the Router widget in Flutter’s open design documents. Using these APIs, you’ll be able to fine-tune control over your app’s displays, and you’ll learn how to parse routes. These new APIs don’t break anything; they merely add a new declarative API to the list of available options. If you wanted to relocate or delete a page from the bottom of a stack, Navigator 2.0 made it much easier. It’s OK if you’re content with how the Navigator works right now, so long as you don’t mind the changes. Using the Router, the underlying platform’s routes may be handled and the relevant pages are shown. The Router is set up to show the relevant page based on the browser URL in this article.

Building an Image Picker in Flutter

· 6 min read
Full Stack Developer

Any app worth it’s salt will almost certainly have at least one, if not more than one, image picker. The image picker feature is included in a variety of major applications, including Facebook, Twitter, Instagram, and WhatsApp, amongst others. This feature allows users to choose files from their own device to use as a profile picture or to share with their friends. Setting an avatar for the user profile is by far the most typical function for an image picker to perform in a mobile application. In this guide, we’ll walk you through the process of developing an image picker using Flutter. An example Flutter app will be developed in which the user may either choose a picture from the gallery or snap a photo using the device’s camera.