In this video we will look at the Toastr notifications jQuery plugin and demonstrate how to use this JavaScript solution in a Dart web application. As part of transitioning into the AngularDart video series, we will...
Category - Video
Highlight.js–Get started in Dart
In this article we will look at the Highlight.js library and reproduce the examples in Dart using the js interop package. We will also learn about using Web Workers to run code highlighting. This will improve page...
fullPage.js–Get started in Dart
In today’s tutorial we will learn how to use the fullPage.js presentation library in a Dart web project. We will be using the js package by the Dart team to achieve this. Setup Install stagehand and generate a web...
React.js–Get started in Dart #3
In Part 2 we continued looking at the React documentation examples while implementing them in Dart. We began by refactoring the createReactClass function to use named parameters in an attempt to simplify the writing of...
React.js–Get started in Dart #2
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":...
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...
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()...