How to Install and Use Flutter on Linux

Linux TLDR
Last Updated:
Reading time: 4 minutes

Flutter is an open-source UI software development kit (not a programming language) that leverages the Dart programming language for application development.

Google developed this tool to empower developers to build natively compiled applications for mobile, web, and desktop from a single codebase.

It’s the foundation for Alibaba, Google’s Fuchsia OS, Google STADIA (now discontinued), and numerous other software and mobile apps.

Flutter focuses on creating a visually appealing, high-performance, and consistent user interface across different platforms.

In this article, we’ll cover setting up Flutter on Linux and quickly running a Flutter app to confirm the setup.

Tutorial Details

DescriptionFlutter + Android Studio
Difficulty LevelModerate
Root or Sudo PrivilegesYes
OS CompatibilityUbuntu, Manjaro, Fedora, etc.
Prerequisites–
Internet RequiredYes

A Note for Readers

The Flutter installation can be done in two ways: the recommended method involves a one-line snap command execution, and another involves manually downloading the source code, configuring the environment variables, and blah blah blah.

To simplify the installation process, I will guide you through the Flutter installation via Snap, along with practical examples of configuring it within Android Studio.

How to Install and Use Flutter on Linux

The easiest method to install Flutter on Linux is through Snap, especially if you’re using popular distributions like Ubuntu, as Snap is likely already pre-installed.

For other Linux distributions, please refer to this article to install Snap on your preferred Linux distribution.

1. Installing Flutter on Linux

Open your terminal and execute the following command to install Flutter:

$ sudo snap install flutter --classic

Output:

Installing Flutter via Snap

2. Verify Flutter Dependencies

Once the installation is finished, run the following command to perform various checks and assess the status of your Flutter installation and its dependencies, ensuring that your development environment is set up correctly.

$ flutter doctor

Output:

Missing Dependencies for Flutter

After completing the process, if you encounter a prompt indicating that Android Studio and Google Chrome are missing, proceed with the following steps to install them:

3. Installing Google Chrome on Linux

To begin, let’s install Google Chrome. Visit the official Google Chrome website and click the β€œDownload Chrome” button.

Google Chrome Website

Google Chrome automatically detects your operating system or, alternatively, selects the suitable package according to your distribution.

For instance, if you’re utilizing a Debian or Ubuntu-based system, opt for the β€œ64-bit .deb packageβ€œ, then initiate the download process by simply clicking the β€œAccept and Install” button.

Downloading the Chrome Deb package

After downloading the file, open your terminal, navigate to the downloaded directory, and execute the following command to install Google Chrome on your Linux system:

$ sudo dpkg -i google-chrome-stable_current_amd64.deb

Output:

Installing the Google Chrome Deb Package

If you’re utilizing a Red Hat or Fedora-based system and downloaded the Google Chrome RPM file, proceed to install Google Chrome by executing the following command:

$ sudo rpm -i google-chrome-stable_current_x86_64.rpm

4. Installing and Configuring Android Studio on Linux

Android Studio can be installed in different ways that have been covered in our separate article on how to install Android Studio on Linux.

For a quick one-step process, just execute the following command in your terminal to effortlessly install Android Studio using Snap.

$ sudo snap install android-studio --classic

Output:

Installing Android Studio via Snap

Once the installation is complete, launch Android Studio either by executing the following command or searching for it within your operating system’s menu.

$ android-studio

Or

Searching for Android Studio on the Application Menu

After you launch the Android Studio, it’s time to seamlessly configure it with Flutter, starting by engaging with the following screen.

Android Studio setup wizard

Click the β€œNext” button, then in the new window (depicted below), select the β€œStandard” option. Continue by clicking β€œNext” once more.

Specifying the Android Studio setup type as Standard

Select your preferred theme (for me, it’s β€œDarkβ€œ) and proceed by clicking the β€œNext” button.

Choosing the Android Studio UI theme

Your current selections will be displayed. To proceed, click the β€œNext” button.

Android Studio settings

Now, you’ll be prompted to agree to the β€œandroid-sdk-license” and β€œandroid-sdk-preview-licenseβ€œ. Please ensure you select both licenses individually and click on the β€œAccept” button followed by the β€œNext” button to continue.

Accepting the Android Studio License Agreement

Proceed by clicking the β€œFinish” button.

Android Studio Emulator Settings

And now wait until the download is finished.

Android Studio Components are being downloaded

After the download is complete, simply click the β€œFinish” button to finalize the Android Studio configuration.

Finishing the Android Studio configuration

4. Creating a Sample Hello World Flutter App

Once Android Studio is launched, you will be greeted with the Welcome screen.

Android Studio Welcome Screen

Before you begin, make sure you’ve downloaded the Flutter plugin. To do this, navigate to the Plugins section, search for β€œFlutterβ€œ, and then click the β€œInstall” button.

Installing Flutter Plugin in Android Studio

Once the installation is finished, simply click the β€œRestart IDE” button.

Restarting the IDE

You’ll now spot the β€œNew Flutter Project” right on your Android Studio Home screen. Simply click on it to create your first Flutter project.

Flutter Project in Android Studio

Upon clicking, a New Project window will swiftly appear. Navigate to the β€œFlutter” option within the β€œGenerators” section. Confirm the β€œFlutter SDK Pathβ€œ, and proceed by clicking the β€œNext” button.

Creating a New Flutter Project

Give a name to your Flutter Project and click on the β€œCreate” button.

πŸ“
You can also specify the platforms for your Flutter App, such as Android, iOS, Linux, MacOS, Web, and Windows.
Flutter Project

The IDE is ready to launch. From here, just open the file located in β€œlib/main.dartβ€œ.

Opening the principal file in the project

Replace all existing code with the following sample β€œhello world” code.

// Copyright 2023 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Welcome to Flutter'),
        ),
        body: const Center(
          child: Text('Hello World, from LinuxTLDR'),
        ),
      ),
    );
  }
}

At last, choose your preferred device (for example, β€œChrome Webβ€œ) and confidently press the β€œRun” button to witness the enchantment unfold!

Launching the Flutter "Hello World" App

Output:

Flutter App

Congratulations on successfully creating your very first Flutter app!

Final Word

Flutter is an amazing tool for creating a single app that will work on multiple platforms. If you are interested in learning Flutter, then check its official documentation or this tutorialspoint blog.

I hope you find this article helpful. If you have any questions or queries related to the topic, feel free to ask them in the comment section.

Till then, peace!

Join The Conversation

Users are always welcome to leave comments about the articles, whether they are questions, comments, constructive criticism, old information, or notices of typos. Please keep in mind that all comments are moderated according to our comment policy.