Saturday, July 14, 2018

Dart: Json Parsing

July 14, 2018
Welcome to this post. In this post, I am going to cover about JSON parsing in Dart. What I will do on this project?  1.  Get data from Rest API.  2.  Parse the JSON Data Let's Start- First, take look at the data source. I will get the data from this link. https://swapi.co/api/starships/ JSON sample. This response you will find that link { "count": 37, "next": "https://swapi.co/api/starships/?page=2", "previous": null, "results": [ { ...
Read More

Wednesday, June 20, 2018

Dart: Variable

June 20, 2018
Welcome to the series post. The is the first post about Dart From today I am starting Dart language tutorial. I already posted a brief introduction about dart and I also try to answer why you choose the dart programming. Check this Dart Introduction In the previous post, I write about some important concept about dart. Before starting I recommend for taking a look. Main method: First, see the code: void main(List<String> lists) { } In the code, you see that the parameter...
Read More

Sunday, June 3, 2018

Dart: Introduction

June 03, 2018
dart-logo-for-shares
Welcome to this post. Recently I start to learn Dart programming language. From today, I will post about dart programming language. Src: Dartlang What is dart? Dart is an object-oriented programming language, developed by Google. It is used to build web, server, and mobile applications(Flutter). Before Learning darts, some important concept, we have to understand. Concepts: Everything...
Read More