Simon
Simon
`git log`  `git log --oneline`  `git log --oneline --graph`  `git log --oneline --merges --first-parent master`  `git log --online --merges --first-parent master | wc -l` 
thanks for the link @rub1e :+1: `git-file-history` looks fancy. However for this I'd like to avoid installing another npm package and get the overview of a project with just a...
We can now see untested file with codecov: https://codecov.io/gh/dwyl/flutter-todo-list-tutorial/pull/17/tree?path=lib  Adding tests now
The following test is faillaing: ```dart test('save todolist in shared preferences', () { final todoList = TodoListModel(); expect(todoList.tasks.length, 0); final task = TaskModel(text: "task 1"); todoList.addTaks(task); todoList.saveTasksToSharedPrefs(); final todoList2 =...
I've changed how the way a todolist is created. before the `getTasksFromSharedPrefs()` was called directly inside the constructor: ```dart class TodoListModel extends ChangeNotifier { List tasks = []; TodoListModel() {...
To create a new Flutter project we can use the `flutter create` command. See also `flutter create --help` to see the available flags for the command: ```sh Create a new...
As an exercise to understand how provides works I've updated the default counter flutter application: ```dart import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; void main() { runApp(MyApp()); } // create counter model extending...
I've converted the todolist widget from stateful to stateless and use provider to manage the state (adding a new task to the list), see the commit: https://github.com/dwyl/flutter-todo-list-tutorial/pull/17/commits/22d39e3f85638ae5dda79eb47afbef66843761af. I've been looking...
I managed to create a simple todolist application from scratch: The application is simple for now and I'm sure we will add some features. However the simple structure helps to...
I am currently still reviewing the Readme and adding documentation on how to recreate the todolist, see https://github.com/dwyl/flutter-todo-list-tutorial/tree/simple-todolist-%2316 I noticed that I need to add more beginner friendly instructions and...