Author: misamaliraza94

  • Decision Making and Loops

    The decision-making is a feature that allows you to evaluate a condition before the instructions are executed. The Dart language supports the following types of decision-making statements: If statement If-else statement Switch statement The below diagram explains it more clearly. Example Loops are used to execute a block of code repeatedly until a specified condition becomes…

  • Operators

    Dart language supports all operators, as you are familiar with other programming languages such as C, Kotlin, and Swift. The operator’s name is listed below: Arithmetic Equality Increment and Decrement Logical Comparison

  • Variables and Functions

    Variables are the namespace in memory that stores values. The name of a variable is called as identifiers. They are the data containers, which can store the value of any type. For example: Here, myAge is a variable that stores an integer value 50. We can also give it int and double. However, Dart has a feature Type…

  • Data Type

    Dart is a Strongly Typed programming language. It means, each value you use in your programming language has a type either string or number and must be known when the code is compiled. Here, we are going to discuss the most common basic data types used in the Dart programming language. Data Type Example Descriptions…

  • What is Dart Programming

    Dart is an open-source, general-purpose, object-oriented programming language with C-style syntax developed by Google in 2011. The purpose of Dart programming is to create a frontend user interfaces for the web and mobile apps. It is under active development, compiled to native machine code for building mobile apps, inspired by other programming languages such as Java,…

  • System Requirements for macOS

    To install and run Flutter on macOS system, you need first to meet these requirements for your development environment. Operating System macOS (64-bit) Disk Space 2.8 GB (It does not include disk space for IDE/tools). Tools bashcurlgit 2.xmkdirrmunzipwhich IDE Xcode (Official) Get the Flutter SDK Step 1: Download the installation bundle of the Flutter Software Development…

  • Install the Flutter SDK

    Step 1: Download the installation bundle of the Flutter Software Development Kit for windows. To download Flutter SDK, Go to its official website, click on Get started button, you will get the following screen. Step 2: Next, to download the latest Flutter SDK, click on the Windows icon. Here, you will find the download link for SDK. Step 3: When your download is…

  • Install Git

    Step 1: To download Git,  Step 2: Run the .exe file to complete the installation. During installation, make sure that you have selected the recommended option.

  • System requirements for Windows

    In this section, we are going to learn how to set up an environment for the successful development of the Flutter application. System requirements for Windows To install and run Flutter on the Windows system, you need first to meet these requirements for your development environment. Operating System Windows 7 or Later (I am Windows…

  • History of Flutter

    Flutter is a free and open-source UI software development kit introduced by Google. It is used to build applications for Android, iOS, Windows, and the web. The first version of Flutter was announced in the year 2015 at the Dart Developer Summit. It was initially known as codename “Sky” and can run on the Android OS. After the announcement of…