Flutter Web: Animations & Dynamic Theming

Souvik Biswas
Flutter Community
Published in
7 min readAug 13, 2020

This is the second part of the Flutter web article series. In the previous article, we finished the basic UI design of the web app and also made it responsive. Now we will add some animations and dark theme support to it as well.

You can find the previous article here:

Just to refresh your memory, this is what we ended up with last time:

So, let’s get started and make it even better.

Web animations

We won’t be adding a ton of animations, but just to make the UX of the web app better. Precisely, we will be adding animation to the top bar and the floating selector for cycling through the destinations.

Top bar

If you have followed along the previous article, then you might have noticed that towards the very end of the article in the final demo the top bar has a nice color transition (from transparent to a shade of blue-gray) as the user scrolls along the webpage. But, I had not covered that part in the previous article.

So let’s see how you can achieve that effect.

You can just vary the opacity of the backgroundColor of the AppBar according to the user scroll distance. Follow the steps below:

  1. Define a scroll controller and two more variables for storing the scroll position and opacity:

2. Define a method called _scrollListener() as follows:

3. Initialize the controller and attach the listener to it.

4. Inside the build method, calculate the opacity according to the scroll position which depends on the screen height. As we had defined the top image with respect to the screen height, this will help you to determine the precise position after which the opacity should be maximum.

5. Set the opacity to the backgroundColor of the AppBar, and also pass it to the PreferredSize widget, which is used for the large screen, to set the color similarly.

Floating selector

In the floating selector, we will add a subtle animation to the underline highlighting the selected destination, while transitioning between different destinations.

You can wrap the Container (used for the underline) with the AnimatedOpacity widget for creating the animation.

Dynamic theme

You can use a Flutter package called dynamic_theme for adding dynamic theme support to the web app and persist it.

  1. Add the package to the pubspec.yaml file:
dynamic_theme: ^1.0.1

2. Wrap the MaterialApp widget with the DynamicTheme widget inside main.dart file, like this:

3. Define the themes you want to use for the light and dark mode inside the data property of the DynamicTheme widget:

4. Set the theme of the different widgets according to the properties that you have defined within the ThemeData widget. For example, you can set the background color of the AppBar like this:

I wanted the bottom bar color and the top bar color to be same, so I have defined the color according to the bottomAppBarColor property of the ThemeData.

Almost done, but let’s also talk about a customizable scrollbar.

Customizable scrollbar

You might have noticed that the present webpage that we have created doesn’t have a scrollbar, like the one you can see and drag in normal webpages. Flutter Web doesn’t show a scrollbar for a scrollable content by default.

You can display a scrollbar, like you can do in normal mobile apps, by wrapping the whole scrollable content of the webpage with the Scrollbar widget. Thought this might fix the issue for some people, but not in our case.

Turns out that if you have other scrollable content inside your webpage the default Scrollbar widget might break.

There’s a caveat in using the Scrollbar widget. It actually picks up every scroll event present in your app (including the nested scrollable widgets), not just the primary one, as you might want for a normal webpage. And, the widget doesn’t come with a property to specify the depth, which you could have used for restricting it only to the primary scroll event.

We have two nested scrollable widgets in our web app, one is the Row wrapped with a SingleChildScrollView (only for small screens) for displaying the feature tiles and the CarouselSlider with the destinations. So, definitely the default Scrollbar wouldn’t work as expected.

How to fix it? You can use the NotificationListener() widget for getting the depth of the scroll events and only update the Scrollbar if the depth is 0 (primary scroll event is indicated by '0').

Also, the default Scrollbar doesn’t come with any good customization options, like changing the color, width & height of the scrollbar, etc.

So, in order to fix all these issues, I have created a new widget called WebScrollbar.

It is a StatefulWidget and you can pass the following properties to it:

Let’s take a look at the main part to know how it is created.

First of all, I used the scroll controller, which is passed to this widget, and attached a listener to it.

Inside the build method, I have calculated the screen size which is used for setting the scrollbar height with respect to it.

In _topMargin variable I have calculated how much of the empty space should be above the scrollbar, basically for setting the position of it. Initially, it is set to zero.

To display the scrollbar, I have used a Stack so that I could place it on top of the child passed to this widget.

For updating the scrollbar with respect to only the primary scroll event, you have to wrap the whole Stack widget with the NotificationListener() and check for the depth.

You have to define onTapCancel, onTapDown & onVerticalDragUpdate property of the GestureDetector widget in order to update the position of the scrollbar as it is dragged.

Now, just wrap the SingleChildScrollView widget, containing the whole webpage, with the WebScrollbar to display it.

So, here you go, now you have a fully customizable scrollbar to use on your webpages.

The whole UI code for the WebScrollbar is available here.

Conclusion

In this article, we covered animations and dynamic theming. In the next article of this series, you will learn how to integrate user registration and sign-in to your Flutter web app using Firebase Authentication.

You can try out the Flutter Web app here.

An article regarding the dynamic_theme package:

The GitHub repo of this project is available in the following link:

If you like this project, then please “Star” (⭐️) the GitHub repo.

--

--

Souvik Biswas
Flutter Community

Mobile Developer (Android, iOS & Flutter) | Technical Writer (FlutterFlow) | IoT Enthusiast | Avid video game player