Skip to content

Commit

Permalink
ci(dartdoc): install dependencies in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
L483 committed Oct 19, 2024
1 parent b71f588 commit 8977ece
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dartdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
sudo snap install flutter --classic
flutter
flutter pub get
# change to
- name: run documentation generator
working-directory: ./revoiceme
Expand Down
4 changes: 4 additions & 0 deletions docs/categories/globals.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Globals

**Globals** are non-screen (screen as in the category Screens) pieces of code that rely on a custom, specific global state of the ReVoiceMe app.
They will not function properly otherwise.
3 changes: 3 additions & 0 deletions docs/categories/others.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Others

**Others** contains special code parts of the project that do not fit into any other category.
6 changes: 6 additions & 0 deletions docs/categories/screens.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Screens

**Screens** are the biggest building blocks of the app.
They are composed of multiple components.
They define the overall layout, navigation, structure and flow of the app.
Appearance and features between screens is very distinct.
5 changes: 5 additions & 0 deletions docs/categories/widgets.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Widgets

**Widgets** are typically small and reusable components.
They are the basic building blocks of the app.
Multiple widgets can be combined into bigger components or screens.

0 comments on commit 8977ece

Please sign in to comment.