An open API service indexing awesome lists of open source software.

https://github.com/mbrsagor/dart

The dart language is one of the most for mobile application development. I'm learning Dart for mobile application development like IOS and Android both platforms. Nowadays most of the company cross-platform application development for their business and clients.
https://github.com/mbrsagor/dart

android-app android-application dart flutter flutter-app flutter-apps-development ios ios-app

Last synced: 7 months ago
JSON representation

The dart language is one of the most for mobile application development. I'm learning Dart for mobile application development like IOS and Android both platforms. Nowadays most of the company cross-platform application development for their business and clients.

Awesome Lists containing this project

README

          

# Dart Lanague

### What is Dart?
Dart is programming language develop by `Goolge` October 10, 2011 right now the `dart` is very popular for mobile application development. It's also work for web framework (web app development) but especially uses for mobile `app` and `game` development. `Flutter` is open source software development kit which develop `dart` language.

## What is Flutter?
`Flutter` is a free and open-source mobile UI framework created by Google and released in May 2017. In a few words, it allows you to create a native `mobile application` with only one codebase. This means that you can use one programming language and one codebase to create two different apps for `IOS` and `Android`.

## Install the Dart SDK

On Mac
```
$ brew tap dart-lang/dart
$ brew install dart
```

On Linux
```
$ sudo apt-get update
$ sudo apt-get install apt-transport-https
$ sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
$ sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
```
Then install the Dart SDK
```
$ sudo apt-get update
$ sudo apt-get install dart
```