Simon
Simon
While reviewing the OOP concepts in Dart ( I'm looking at async/await with shared preference and how to use it with classes https://github.com/dwyl/flutter-todo-list-tutorial/issues/18 ) I was wondering if we could...
`flutter help`:  - create a new project: `flutter create --org org_name --project-name prject_name folder` - `flutter test` - `flutter run`
The current readme can be updated to make it more biginner friendly and easier to follow code: - Add source code of project to allow people to run the project...
The repository currently only contains the `README` file. - [ ] Create the `todo` flutter application and push the code to the repository so people can refer to back to...
these tests will check that all the properties needed still exist when the index is updated. This will allow us to target quickly the issues like #280
 The text field can contains multiple lines, however at the moment the content is centered. I'm going to look at the Flutter layout and find a solution to make...
 The list of items should be at the top under the field input. There is an issue (linked to the Expand widget I think). - [ ] Review how...
When the TextField obtains focus (see #308), the height of the widget is maxed out to take as much screen as possible. However this transition is a bit abrupt and...
At the moment to extend the `TextField` to take all the screen see https://github.com/dwyl/app/issues/303 I'm using the `onTap` property of the widget: ```dart child: TextField( onTap: () { extendsFieldText(); },...
To be able to review #231 and to make sure I understand how the application works, I'm currently reading the code to improve my understanding of it. I'll list any...