In Part 1 of this series, we built our Greeting component that took a name parameter and rendered this onto the screen. Here’s what the snippet for this looked like: var Greeting = createReactClass({ "render":...
Category - Tutorials
React.js–Get started in Dart #1
Happy New Year folks! In this three-part series, we will go through the React.js homepage examples and learn how to reproduce these in Dart using the js interop package. Watch on YouTube Before we begin: 1. Set up your...
Ever been stumped by <E>, <T>, <K, V> in OO language documentation?
Over on the Reddit /r/dartlang group, an individual by the name of NFC_TagsForDroid reached out to me in regards to confusion navigating the Dart documentation. This was specifically when understanding the meaning...
Write your first Web Scraper
In this tutorial, we will write a web scraper to query the Hacker News homepage for a list of the latest articles with their URLs. We will produce a JSON string containing our results based on the scraped data. We will...
Build Web APIs with Aqueduct #3
In this article we will look at Serializable classes and how they enable us to handle the payload of a request body. We will then proceed to set up and integrate our PostgreSQL database. Watch on YouTube What are...
Build Web APIs with Aqueduct #2
In this article we will look at routing in further detail, building an endpoint capable of performing CRUD(create, read, update, delete) operations. We will make use of Router and Controller classes in the handling of...
Build Web APIs with Aqueduct #1
A couple of months ago I wrote a series of articles based on the Aqueduct framework for Dart. We developed a RESTful API serving up a list of reading materials from a PostgreSQL database. In this series of videos, we...
Learn Dart #8: Perform a serverside POST request in under 30 seconds
Hello friends. In today’s quick tip we will be using the inbuilt HttpClient class to perform a server-side POST request. Watch on YouTube Below is the full solution: import 'dart:io'; import 'dart:convert'; main()...
Learn Dart #7: Setup VSCode for Dart development in under 30 seconds
In today’s quick tip, we will see how to set up Visual Studio Code to develop your Dart projects. It’s as straightforward as installing some extensions and we’re good to go! Watch on YouTube Further...
Vue.js–Get started in Dart (Part 2)
In Part 1 of the series we went through several examples of the Vue.js guide, finishing at Conditionals and Loops. In this part we will be resuming with the tutorial looking at Handling User Input and Composing With...