How to capture long screenshot of apps and website on Android?

Dart is a object-oriented, open source and general purpose Programming Language developed by Google. It is used to build applications for multiple platforms like Mobile, Desktop, Server and Web Application. The main purpose of Dart Programming Language is to create awesome User Interface for Mobile, Desktop and Web Applications using Flutter Framework.
In this tutorial, we will focus on how you can Install and Run Dart programs on your Android Device. You will be able to run your Dart programs offline in your Android after following the below steps.

You need to turn on the internet to download necessary files for Termux during the first launch after app installation or clearing its data.

$ pkg install dartTo write Dart program, you need to install an Editor. In this tutorial, we will use Micro text editor. It is a good text editor for Termux which has many cool features. It also supports the shortcut keys that are used in PC like CTRL + V to Paste the Copied Text, CTRL + S to Save File, CTRL + Q to Exit/Quit the Editor, etc.
$ pkg install micro$ micro main.dartHere, main.dart is the name of the Dart Program. You can use any name for your code in place of main.

Once you write the Dart program, you need to run it to see its output.
To run your Dart code, follow these steps.
$ dart main.dartHere, main.dart is the name of the Dart program you have created.
Instead of using the Termux Editors, you can also write Dart programs on any one of your favorite Code Editor app and execute them. I am using Acode code editor in this tutorial which is my favorite code editor with many cool features.
To write your Dart programs on code editor, follow these steps:

<filename>.dart.<filename>.You should save your file in the root of your sdcard or where you can easily get its location because you need to provide the file location to run your code.
After writing your program, you can run it to see the output. To run your Dart code, follow these steps:
$ termux-setup-storage$ dart /path/filename.dart
Following this tutorial, you have successfully installed Dart on your Android, and now you can run your Dart programs offline on your Android Device.
Comments
Post a Comment
Add comment.