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.
- Host: GitHub
- URL: https://github.com/mbrsagor/dart
- Owner: mbrsagor
- Created: 2020-03-19T21:38:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-16T16:30:42.000Z (about 5 years ago)
- Last Synced: 2025-03-02T00:26:38.828Z (about 1 year ago)
- Topics: android-app, android-application, dart, flutter, flutter-app, flutter-apps-development, ios, ios-app
- Language: Dart
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```