summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2026-01-05Split code into three Dart filesxengineering
This follows recommendations [1] from the flutter documentation. [1]: https://docs.flutter.dev/app-architecture/concepts
2026-01-05Rename to `UI`xengineering
2026-01-03Make one contact toggle with timerxengineering
This demonstrates that the state of the contacts in the UI can be changed at runtime.
2026-01-03Make ContactList a StatefulWidgetxengineering
This is required to change the contact states during runtime.
2026-01-03Specify Dart types explicitlyxengineering
This makes the code more readable.
2026-01-02Rename to ContactListxengineering
The old name MainPage did not explain a lot.
2026-01-02Implement dummy `Contacts` UIxengineering
This demonstrates how the UI should look like. The data is just for visualization and never changes. Functionality is added later.
2025-12-22Create flutter projectxengineering
This was done using the following command. flutter create \ --description "Sia app" \ --org "eu.xengineering" \ --project-name "sia_app" \ --platforms linux,android \ --empty \ .