Simon

Results 205 comments of Simon

`git log` ![image](https://user-images.githubusercontent.com/6057298/53472916-eed94a80-3a60-11e9-8a8f-0e8a18ebba31.png) `git log --oneline` ![image](https://user-images.githubusercontent.com/6057298/53473266-dc134580-3a61-11e9-896b-eb4a637b98a5.png) `git log --oneline --graph` ![image](https://user-images.githubusercontent.com/6057298/53473424-41673680-3a62-11e9-8bd1-808c88d418a9.png) `git log --oneline --merges --first-parent master` ![image](https://user-images.githubusercontent.com/6057298/53473760-2fd25e80-3a63-11e9-8751-d9f957d4b15a.png) `git log --online --merges --first-parent master | wc -l` ![image](https://user-images.githubusercontent.com/6057298/53481974-1f77af00-3a76-11e9-9b2b-8f04d1dca0c7.png)

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 ![image](https://user-images.githubusercontent.com/6057298/105349287-667a6a80-5be1-11eb-81aa-b0ece011af17.png) 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...