Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Managing State in Flutter Pragmatically
Managing State in Flutter Pragmatically

Managing State in Flutter Pragmatically: Discover how to adopt the best state management approach for scaling your Flutter app

Arrow left icon
Profile Icon Arshad Profile Icon Agarwal
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9 (10 Ratings)
Paperback Nov 2021 246 pages 1st Edition
eBook
$26.99
Paperback
$33.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Arshad Profile Icon Agarwal
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9 (10 Ratings)
Paperback Nov 2021 246 pages 1st Edition
eBook
$26.99
Paperback
$33.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$26.99
Paperback
$33.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Managing State in Flutter Pragmatically

Chapter 1: States and State Management Overview

This chapter is an introduction to the core concepts of states and state management in Flutter. You will learn the basic important concepts of a state in Flutter and how it affects your application in general. You will also learn about state management, what it is, why it is necessary, and the advantages of using it in your application.

In this chapter, we are going to cover the following main topics:

  • What is a state?
  • Why is studying states important?
  • What is state management?
  • Why do we need state management?
  • Choosing the best state management technique

This chapter is going to show you why you need to study state management in order to build better, stable, and scalable Flutter applications. By the end of this chapter you will have a grasp of the following:

  • The concepts of states and state management in Flutter
  • The importance of studying and applying state management in Flutter
  • How state and state management are interrelated to each other

Flutter – a brief introduction

Before we jump right into states, state management, and the techniques related to states, we should learn a little about what Flutter is (though this is already this book's pre-requisite).

Flutter is a cross-platform development toolkit that is backed by Google itself. Flutter enables you to create beautiful native applications for iOS, Android, the web, Windows, macOS, Linux, and even embedded systems, with a single code base.

Flutter uses Dart, a language created by Google back in October 2011. Dart is easy to learn as it is based on concepts from both open languages such as JavaScript and object-oriented languages such as C# and Java. Dart can be used for client-side programming, such as mobile and web, as well as for server-side development, such as RESTful services.

You can learn more about Flutter and Dart on Flutter's official website (https://flutter.dev/).

What is a state?

Before diving into creating applications and managing states in Flutter, it is necessary to understand what a state actually is and how it affects our application.

Put simply, the state of an application is a condition or a situation – an instance or a snapshot that shows the condition of your application at a certain point in time.

For example, your application shows two variables, x and y, with values 2 and 3 respectively. Let's call this state State A. Now, if there is a user interaction and the values of your variables x and y change to something else, let's say 4 and 5, that would be a different state of your application, State B.

Figure 1.1 – Two different states of an application

Figure 1.1 – Two different states of an application

States A and B are two different conditions of your application. Each one of them denotes a certain set of values of the variables that can be used to identify which state the application is currently in.

Another example of a state would be a counter application that shows an increasing counter every time the user presses a plus button.

Figure 1.2 – Two different states in a counter example app

Figure 1.2 – Two different states in a counter example app

The counter keeps on increasing and the state keeps changing as the user presses the plus button.

To summarize, the state shows your application's current set of values and can be changed based on user interaction.

Now we know what a state is, how it is detected and used within an application, and how it affects your application's UI. To better understand states for a large-scale application, let's see why a state is important in an application.

Importance of a state in an application

The state is the core building block of your application. It defines the overall behavior of your app, from the beginning of your user journey to the time the user closes/terminates your application. Every change the user sees is a state of its own, and you need to make sure that your user sees what you intend to show. You also need to make sure that with every possible user interaction, the application shows valid states. It should not show something that you or the user don't expect to see (an exception, a red screen, an unexpected or unhandled error, and so on).

Different states in a large application

Since we now know that every user interaction creates a new state for an application, a complete functional application can have hundreds of states. In order to keep track of and manage every state, it is important to understand what role a state plays inside your application. Here are some examples of states that get updated by user interactions in a simple login page consisting of two text fields and a button:

  • The user enters a correct email and password – A new state that navigates the user to some other screen
  • The user enters the wrong email and password – A new state showing an error
  • The user presses the login button without entering anything – A state that says that the user has to fill in both the required fields
  • The user presses the login button with only one filled-in field – A state indicating the field that needs to be filled in
  • The internet gets disconnected – A state that shows a pop-up dialog for no internet connection

The preceding example was of one single login page with the three simplest forms of UI components, and you saw how many states were extracted from it. When your application gets bigger, there can be a lot of states to manage. Therefore, studying states and knowing everything about them is as important as building an entire application.

We have seen how important states are and how they help us get the most out of our application. We have also seen the immense importance of states in a larger application with many states. Let's now understand what state management is and how we can manage states in our application through different techniques (the actual point of this book).

What is state management?

State management is simply a technique, or multiple techniques, used to take care of the changes that occur in your application. When your application gets bigger, you need to apply a proper state management approach in order to be able to keep track of every change inside your application and make the application respond to the user accordingly. This can include the following:

  • Responding to user interactions
  • Keeping track of data throughout the different screens in the application
  • Changing data points in the application at one place and handling the response at other points in the app that read that data

This book will show you different techniques of managing states in your Flutter application, ranging from very basic ways, such as setState (pushing changes to the UI through a function call), to advanced approaches, such as BloC (a business logic component, used to decouple the UI from business logic) and provider (a community-favorite technique used widely among a variety of applications).

Choosing the best technique for your application

After finishing this book, you will clearly understand which state management techniques should be used for different kinds of application. It is necessary to be able to figure out the best state management solution for a given kind of application. Remember, there is no one solution that is best for every single application. It is all about choosing the right one for the application you are going to create.

The correct choice of state management solution will enable you to create better, scalable, highly performant, and faster applications with less code mess and better readability.

Using the right approach is going to make your application life cycle easier, as it will enable you to add and update features seamlessly. Also, you will help new developers to understand your code better and adjust with you faster.

Summary

In this chapter, we saw that the state is the condition or situation of your application, giving you a certain set of values for variables inside your application that may or may not be reflected on your screen. When an application transitions from one state to another, the set of values is updated, and a new state is formed and is mostly changed by user interaction.

We studied how many states can be formed with or without user interaction in the case of a simple login screen and the importance of state in a large-scale application. There was an overview of what state management is and why choosing a good state management technique is beneficial to the development life cycle.

In the next chapter, we will discuss the most basic forms of state management techniques, mainly setState and InheritedModel. We will also see how these approaches are reflected in code with real running examples.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Get to grips with popular approaches for managing your Flutter application state
  • Think declaratively in order to decide on the most fitting approach for different applications
  • Learn to implement state management solutions by building a popular use case in the form of a shopping cart app

Description

Flutter is a cross-platform user interface (UI) toolkit that enables developers to create beautiful native applications for mobile, desktop, and the web with a single codebase. State management in Flutter is one of the most crucial and complex topics within Flutter, with a wide array of approaches available that can make it easy to get lost due to information overload. Managing State in Flutter Pragmatically is a definitive guide to starting out with Flutter and learning about state management, helping developers with some experience of state management to choose the most appropriate solutions and techniques to use. The book takes a hands-on approach and begins by covering the basics of Flutter state management before exploring how to build and manipulate a shopping cart app using popular approaches such as BLoC/Cubit, Provider, MobX, and Riverpod. Throughout the book, you'll also learn how to adopt approaches from React such as Redux and all its types. By the end of this Flutter book, you'll have gained a holistic view of all the state management approaches in Flutter, and learned which approach is the best solution for managing state in your app development journey.

Who is this book for?

This book is for developers who have already started with their Flutter journey and are now looking to learn optimal state management approaches for app development. The book will also help less experienced Flutter engineers to find the best state management solution to fit their app, along with Flutter engineers who want to learn which state management approach should be taken under what circumstances.

What you will learn

  • Understand the core concepts of different state management techniques used in Flutter
  • Build optimal and performant applications in Flutter
  • Develop an understanding of which technique to apply in what sort of apps
  • Build the habit of writing clean state management code
  • Produce code with techniques from beginner to advanced level for different state management solutions
  • Use state management techniques to create robust and scalable apps in Flutter

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Nov 25, 2021
Length: 246 pages
Edition : 1st
Language : English
ISBN-13 : 9781801070775
Vendor :
Google
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Nov 25, 2021
Length: 246 pages
Edition : 1st
Language : English
ISBN-13 : 9781801070775
Vendor :
Google
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 142.97
Managing State in Flutter Pragmatically
$33.99
Flutter for Beginners
$59.99
Flutter Cookbook
$48.99
Total $ 142.97 Stars icon

Table of Contents

13 Chapters
Section 1:The Basics of State Management Chevron down icon Chevron up icon
Chapter 1: States and State Management Overview Chevron down icon Chevron up icon
Chapter 2: The Core Building Blocks of State Management Chevron down icon Chevron up icon
Section 2:Types, Techniques, and Approaches Chevron down icon Chevron up icon
Chapter 3: Diving into Advanced State Management Approaches Chevron down icon Chevron up icon
Chapter 4: Adopting State Management Approaches from React Chevron down icon Chevron up icon
Chapter 5: Executing Distinctive Approaches Like GetX, GetIt, and Binder Chevron down icon Chevron up icon
Section 3:Code-Level Implementation Chevron down icon Chevron up icon
Chapter 6: Creating a Shopping Cart Application Using Basic Approaches Chevron down icon Chevron up icon
Chapter 7: Manipulating a Shopping Cart Application through BLoC, Provider, and React-Based Approaches Chevron down icon Chevron up icon
Chapter 8: Using GetX, GetIt, and Binder to Update the Cart Application Chevron down icon Chevron up icon
Chapter 9: Comparative State Management Analysis: When to Use What? Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9
(10 Ratings)
5 star 90%
4 star 10%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Stuart Nov 29, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
4.5 Stars - I've been using Flutter for 1+ years now and wanted to learn about other state management approaches. The introduction to the various packages was excellent. Without a significant time effort, I was able to understand the basic differences in the techniques. Reviewing these sections later as a reference was also going to work pretty well.Unfortunately, the depth of this coverage here and later in the examples was still a bit too basic for the real world. This is a bit disappointing as the book is covering this very topic. I was very happy to see the content towards the end about how to make choices between which state management to use. It was helpful, but a bit too casual and too light for my preferences. It was a very short section which was disappointing as its the climax of the book.I would suggest this book if you wanted to gain a fair amount of technical understanding of each of the state management approaches. Or, if you are unsure of which approach to use, this will start you along the way. However, once you make that decision, you will mostly likely need another state management book or reference to show you how best to go about it.
Amazon Verified review Amazon
Roddy Bear Jul 14, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I enjoyed taking the time to consider the pros and cons of the various state management approaches available to flutter. We all have our preferred state management techniques but it's also good to zoom out and look at the others optiins from time to time. I enjoyed this book
Amazon Verified review Amazon
Kit G. Apr 16, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Who I would recommend this book to:- tech team leads and CTOs who are researching the current state of mobile development looking for the framework suited for their needs: for them the book will cover how Flutter is beneficial for rapid development and might give a few hints how to speed up adoption of Flutter by developers from other backgrounds, such as React.- intermediate Flutter developers who are still honing their front-end skills: for them the book should eliminate a few of “I don’t know what I don’t know” traps when it comes to Flutter and help them discover approaches they did not know existed.Who I would not recommend this book to:- Flutter beginners or for that matter inexperienced programmers in general, since the book does not cover bases nor does it teach Dart, the programming foundation of Flutter.What I liked about the book:- variety of approaches to the subject matter covered without prejudice or bias to any specific one- competent code samples- material is concise and easy to coverWhat I thought could be better:- code samples and use cases are a little detached from real coding practice. Here’s an example: almost every app these days has some form of authentication and, accordingly, has to manage its authentication state. It would be so tremendously useful to the reader if the book gave an example of mobile architecture where some sort of user model, while fully separated from the UI, can be easily and effectively accessed from any point in a multi-page application for the purpose of practical state management. I did not find such examples.- For whatever reason, the book does not cover Flutter’s native ValueNotifiers/ValueListenableBuilders, even though it is one of the most effective approaches to state management.About me:A dev team lead and simply a developer with a fair bit of experience. Have been a Flutter fan since its version 0.4. Other skills include: relational databases, API development, DevOps/IaC
Amazon Verified review Amazon
Mike Dec 15, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The text is simple and easy to comprehend. I've only begun reading the book and I must say that my initial impressions have been good. The fact that the author has managed to cover a wide range of popular state management techniques, keeping it clear and condensed, is a testament to his skills. Great material for beginners and those who want to brush up on their knowledge. I would, however, like to point out that the Bloc library referenced in the book is slightly outdated, the newer version is much more intuitive and unlike it's arcane predecessor, it doesn't rely on the usage of the asynchronous generator, mapEventToState. I would have also loved to see examples using BlocListeners and BlocConsumers.
Amazon Verified review Amazon
Rachana Dec 30, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book is very comprehensive and teaches state management techniques in Flutter with application examples. Even though the book is very detailed, its as well basic, so would recommend it only for the ones who want to learn flutter and are in the beginner stage.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.