Murtaza Sulaihi I am a school professor and I also develop Android applications and Flutter applications.

Choosing the right gestures for your Flutter project

6 min read 1709

Choosing the right gestures for your Flutter application

iPhone 1 Lock Screen

When you see the above image, it makes you feel a little nostalgic. Though Microsoft had a touch screen phone on the market, it paled in contrast to what Apple delivered to the globe: a phone entirely controlled by human touch.

It was incredible to see and experience when you slid the arrow button from left to right and it unlocked your phone, which is known as a gesture.

What is a gesture on a mobile device?

Gestures are ways for one human being to communicate with another. Similarly, it is now a method of communicating with all devices, whether a mobile phone, a tablet, a laptop, or large touch screen monitors.

Gestures have crossed the physical-digital barrier, allowing us to interact with digital media using our bodies. It makes using devices, digital apps, and software more enjoyable and interactive. In addition, a well-designed app or software always has a shorter learning curve because they feel natural and easy to use.

What are the advantages of gestures on mobile devices?

Blackberry PhoneNokia

Around ten years ago, we interacted with mobile phones by pushing buttons, dialing numbers, and typing lengthy messages with the help of either a qwerty keyboard or a numerical keypad. Now with a single tap, swipe, or flick, a user can completely control their device.

A gesture feels natural to us because it is associated with the way we interact with real-world objects.

Take an example of a person reading a newspaper. Naturally, a person will use the index finger to turn the page. In a very similar manner, a user can read newspapers, magazines, and novels using swipe gestures with the index finger for flipping the page on their digital device.

Swipe to Read Magazine

Image courtesy blog.flipsnack.com.

If we summarize the advantages of gestures, we can say that we will have:

  1. a cleaner interface
  2. ease of use
  3. better task completion
  4. increased user interaction
  5. effortless user interface

Types of gestures

Now let us look at the types of gestures the Flutter platform provides and what widgets can be used to perform those gestures. We will also look at a few use cases where ideally, according to the material guidelines, gestures should be used.

Types of Gestures

Image courtesy uxplanet.org.

So, according to material guidelines provided by Google here, there are three types of gestures.

Navigational gestures

A gesture to move between screens quickly and easily, which does not necessarily mean you need a button to switch between screens. It can be anything from text, an icon, or even an image.

Navigational gestures include:

  1. Tap
  2. Scroll and pan
  3. Drag
  4. Swipe
  5. Pinch

Action gestures

As the name suggests, a prominent button such as a floating action button can perform quick actions on the current screen with a single tap, a long press, or a swipe. Take an example of Gmail, where users can swipe to archive an email or tap on the extended FAB button to compose an email.

Action gestures include:

  1. Tap
  2. LongPress
  3. Swipe

Transform gestures

To transform size, position, and rotation using two or more fingers. A prevalent example is Google Maps. Users can use the pinch to zoom gesture, double-tap to zoom, drag and drop pins, or rotate the map.



Transform gestures include:

  1. Double-tap
  2. Pinch
  3. Compound gestures (rotations)
  4. Pick and move

Please look at the mind map below, explaining that Flutter provides all the gestures mentioned earlier in its widgets.

Flutter Gestures Mind Map

Disclaimer: The examples I will use below are from popular applications that millions of people are currently using. I am not promoting the apps or the company that owns them, nor am I associated with them directly or indirectly. I am using it only as a reference for this article purely for learning purposes.

Choosing the right gestures for a text app like WhatsApp

Let me tell you why I decided to use real-world applications as an example. Every programmer or designer in their learning stage must have tried to clone popular applications, such as Whatsapp, Telegram, Instagram, etc. I know I have tried too.

There is a lot of R&D that goes behind building these types of applications. Also, great minds come together to design and build it. And since millions of people use it, it has been tested thoroughly, making these apps ideal for learning the functionality and UI/UX design.

So let’s inspect Whatsapp closely. Though the apps are not built on the Flutter platform, we can still see where they have implemented gestures, which kind of gestures, when, and why. If we had to build something similar using the Flutter platform, which widgets should we use to exact the implementation?

WhatsApp Example

Please take a few moments to consider the images above before continuing. Then, examine the user interface from the perspective of a programmer. How many gestures do you recognize?

You may not have noticed it when using the app, but you will see all of the gestures listed below if you look closely.

Which types of gestures does WhatsApp use?

  1. A TabBar that automatically implements a swipe gesture to switch between screens
  2. If you tap on the profile icon, a large image will open
  3. If you tap on any individual list item, it will open a new chat screen window
  4. Long pressing on the particular list item will select it
  5. Pinch to zoom on profile pictures and images sent by another user

If I had to clone this screen in Flutter, which widgets would I use?

  1. TabBar widget
  2. ListView with builder function
  3. GestureDetector to Tap on the profile icon
  4. GestureDetector to LongPress on an individual item
  5. GestureDetector wrapped around ListTile to Tap on a particular list item
  6. GestureDetector to Swipe from left to right
  7. InteractiveViewer widget to use the Pinch and Pan gestures

WhatsApp Example Chart 1 WhatsApp Example Chart 2

Where are gestures implemented?

If you look at the UI, it is straightforward. There is no learning curve here because it comes naturally to any user. In addition, gestures are in place on the main screen and chat screen, so users can easily interact with the application. For example, alone, ListView has three different gestures in place.

When are gestures used?

When a user wants to read the messages, the user taps on the individual item in the list.

When a user wants to delete a chat, the user will long press on it.

When users want to see a profile picture, they will tap on it to make it larger.

An important question: Why?

Let us imagine an alternative UI. If we did not have gestures in place, how would a user select a chat?

Before, we had phones with physical buttons, where we used four arrow buttons to scroll through the phone messages. To select a message, we had to click on the middle button. Then, we had to click on the options to delete a message and scroll down to choose the delete. It was a lengthy process.

Consider the above in the current scenario in a chat screen. Then, look at the mockup below to imagine how users feel about it and interact with the application.

WhatsApp Home Screen INteraction

Today, we have mobile phones in different sizes, so there is a thumb area in play here. If a user holds the phone in the right or left palm, how far a thumb will reach to operate the mobile phone is considered by any designer or programmer. Then, designers consider the implementation of gestures to interact with other parts of the application with another hand.

Thumb Position on a Mobile Device

Image courtesy dev.to.

Again, coming back to the main screen of the WhatsApp example, a user can use a thumb to tap, scroll, swipe, and start a new chat by clicking on the floating action button. Only when a user wants to click on top of the screen will they need to use their other hand.

Let us look at other examples

In Gmail, the UI is similar to WhatsApp’s main screen. Users can select the messages by a single tap on the round icon or by long pressing on the message itself. Similar functionality is provided by Flutter using the GestureDetector widget. However, Gmail has an added gesture: Swipe to Archive, or Swipe to Delete, using the Dimissible widget.

Gmail Example Swipe Gmail Example Checkbox

Secondly, in the Keep Notes application, users can reorder notes according to their priority, as seen in the images above. Also, users can swipe to archive a particular note. A Draggable widget and a Dimissible widget provided by Flutter can create a similar UI in your application.

Keep Notes Example 1 Keep Notes Example 2

Similarly, Instagram has a double-tap gesture to like a post, a two-finger gesture to zoom on an image, and it also has a heart icon below each post. Though tapping the heart icon requires one less tap, Instagram still implemented a double-tap to like a post. Why? Because it allows the user to scroll faster and have a larger area to tap, and it is intuitive to tap on an image or a video that you like.

Instagram Tap to LikeInstagram Zoom to Like

A Card widget combined with a GestureDetector or an InkWell widget would do the trick if I build something similar in Flutter.

Conclusion

This is something I’ve learned as I became a developer. First, I started as an Android developer, then as a Flutter developer. Next, I created my UI and built apps around it. Finally, after much reading and research, I thought one should consider asking these questions based on the type of app you are constructing:

  1. What type of a button or a gesture should you implement?
  2. Where should you place a button or a gesture?
  3. When should a user be able to interact with it?
  4. Why are you implementing it?

There are common categories of mobile apps such as Productivity, Social Media, Educational, Games, etc. If your app falls into one of these categories or any other, you should consider checking out applications that fall into those categories.

Studying applications gives you an insight into how to design the UI/UX. Because no matter what type of application you are programming, few widgets are commonly used. UI is also pretty similar to one another, so implementing gestures according to already tested applications will make your app intuitive and interactive. And Flutter provides all the tools to build a fantastic application.

I want to end on this last note that an effective product is always the most usable one.

Get setup with LogRocket's modern error tracking in minutes:

  1. Visit https://logrocket.com/signup/ to get an app ID.
  2. Install LogRocket via NPM or script tag. LogRocket.init() must be called client-side, not server-side.
  3. $ npm i --save logrocket 

    // Code:

    import LogRocket from 'logrocket';
    LogRocket.init('app/id');
    Add to your HTML:

    <script src="https://cdn.lr-ingest.com/LogRocket.min.js"></script>
    <script>window.LogRocket && window.LogRocket.init('app/id');</script>
  4. (Optional) Install plugins for deeper integrations with your stack:
    • Redux middleware
    • ngrx middleware
    • Vuex plugin
Get started now
Murtaza Sulaihi I am a school professor and I also develop Android applications and Flutter applications.

Leave a Reply