Flutter app design resources for iOS and Android

List of flutter app design resources iOS Design Resources Download SF Symbols iOS 14 and iPad OS 14 Sketch Library iOS 14 and iPadOS 14 Sketch Kit iOS 14 nad iPad OS 14 XD Kit iOS 14 nad iPad OS 14 Photoshop Kit iOS 13 nad iPad OS 13 Sketch Library iOS 13 nad iPad …

MySQL and Maria DB connection with Dart language

Connecting to a MySQL or Maria DB server from Dart is very easy. We need just one package. The package we need is ‘mysql1’ which provides a MySQL client library for Dart. This package allows us to establish a connection with a MySQL server and execute queries.  Package for MySQL Create your pubspec.yaml and add …

Hello World in Dart Programming Language

Read here if you haven’t yet install Dart in your system. Install Dart SDK on Mac, Windows and Linux. Download Visual Studio code for your OS. Install Dart plugin in your Visual Studio Editor. Just search Dart on your extensions page. Now run this command on Mac ⌘ + Shift + P and type dart …

Reading CSV file by Dart

Dart Installation Reading CSV files in Dart language is easy. Make sure you have already installed Dart SDK, follow this tutorial if you haven’t Install Dart SDK on Mac, Windows and Linux Plugins For this tutorial, we are going to use the Dart plugin on PHPStorm by JetBrains.  To install the plugin on Mac go …

Install Dart SDK on Mac, Windows, and Linux

Installing the Dart SDK on Mac, Windows, and Linux involves different steps for each operating system. Below are instructions for each platform: Mac: Windows: Linux: After installing the Dart SDK, you can verify the installation by running dart –version in the terminal/command prompt, which should display the installed Dart version.

Create your first Flutter Layout

In this article, we are going to create a Flutter Layout from existing source code which gets generated by fluter create command. If you have not created your Flutter project read this Create your first Flutter project Our final goal is to create a layout which looks like this. Showing person name, picture, and bio. Download …

Create your first Flutter project

To create your first Flutter project on Mac you just need your terminal and editor, we are going to use Visual Studio Code with Dart Code Plugin. If you haven’t installed Flutter Framework, please follow this tutorial How to install Flutter on Mac. 1) Open the terminal on your Mac and cd to the directory …