Simon

Results 101 issues of Simon

The example is using behaviours to define the structure of the API interface: https://github.com/dwyl/phoenix-ecto-append-only-log-example/blob/e8eee00fab8f1555ab93c2d2757c497207d81873/lib/append/append_only_log.ex#L9-L14 The implementation of the API is then done in the `before_compile` macro: https://github.com/dwyl/phoenix-ecto-append-only-log-example/blob/e8eee00fab8f1555ab93c2d2757c497207d81873/lib/append/append_only_log.ex#L25-L48 ... However I'm...

question
discuss

On the section ["ask to see the client project"](https://github.com/dwyl/process-handbook/blob/master/ProjectScopingTips.md#ask-to-see-the-existing-codebase) we can add another point on how to see the history of a git project with the `git log` command. This...

enhancement
awaiting-review
T25m

Now that a first version of stage management is implement (see https://github.com/dwyl/flutter-todo-list-tutorial/issues/22) I want to look at Riverpod and understand how it works and how it can improve the application,...

in-progress

At the moment the application only contains one screen. To be able to display different content (e.g. all completed tasks) we can use routes and navigation system. The current documentation...

A recent version of the [integration_test](https://pub.dev/packages/integration_test) package has been published which means the following guide is not up to date: https://flutter.dev/docs/cookbook/testing/integration/introduction Instead follow the steps on https://flutter.dev/docs/testing/integration-tests See also the...

The `flutter test --coverage` run the tests and create a coverage report in `coverage/lcov.info` file. However the coverage doesn't catch untested files which make it difficult to know the coverage...

T1h

ref: https://github.com/dwyl/flutter-todo-list-tutorial/issues/21#issuecomment-742535367 Provider can be use to make it easier to manage the state of the application, in particular to listen to changes applied to the list of tasks (e.g...

enhancement
T4h

The PR https://github.com/dwyl/flutter-todo-list-tutorial/pull/17 focused on explaining how to create a simple UI with the Flutter widgets. However it doesn't explain yet how to persist the items created while the application...

enhancement
T1d
in-progress
epic

linked to #18 At the moment we can create new task and toggle then from uncomplete to complete. However the state of the application is not saved and each time...

question
T4h
technical