Download PDF in Flutter using Java on Android

Learn how to make an Android native call from Flutter Downloading PDF files in the user download directory on Android is a widespread feature, a lot of apps use PDF viewing and downloading features. I hoped that flutter plugins could solve my problem but they didn’t. Fortunately, it was working great on iOS but it …

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 …