Skip to content

Arifnator/arif_task_app

 
 

Repository files navigation

App Akademie Task App

Setup

Video-Tutorial

⚠️ Please fork the app in GitHub before cloning it to your computer.

How to solve a task

To solve a task follow these steps:

  1. Pull the latest version with Git

  2. Check the task list (in lib/tasks/task_list.dart) for tasks with no solution.

Task(
    taskModel: t_3_1_1,
    // solution: S311(),
)
  1. Uncomment the line that assigns a solution
Task(
    taskModel: t_3_1_1,
    solution: S311(),
)
  1. Solve the task inside the class mentioned in the solution (e.g. S311 in lib/solutions/chapter_3/s_3_1_1.dart)

  2. Validate your solution in VSCode by running the corresponding tests.

How to update the app

GitHub

Press the "Sync fork" button on GitHub.

CLI

  1. git remote add upstream https://github.com/App-Akademie/task_app
  2. git fetch upstream
  3. git merge upstream/main --no-commit

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 80.6%
  • C++ 9.0%
  • CMake 7.2%
  • Ruby 1.1%
  • Swift 0.9%
  • HTML 0.7%
  • Other 0.5%