Added Concept and mockups

This commit is contained in:
2026-02-24 11:39:20 +01:00
parent 5173810194
commit f51c580c48
5 changed files with 49 additions and 8 deletions

1
.gitignore vendored
View File

@@ -118,4 +118,3 @@ app.*.symbols
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/dev/ci/**/Gemfile.lock
docs/build/

1
docs/build-pdf/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.pdf

16
docs/build.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
cd -- "$(dirname -- "$(readlink -f -- "$0")")" || exit 1
files_docs=(*.md)
files_protocols=(protocols/*.md)
files=("${files_docs[@]}" "${files_protocols[@]}")
[ -e "${files[0]}" ] || {
echo "No files found"
exit 1
}
for filename in "${files[@]}"; do
name="${filename%%.*}"
echo "$name"
pandoc --pdf-engine=xelatex -V mainfont="DejaVu Serif" --output="build-pdf/$name.pdf" "$filename"
done

View File

@@ -1,14 +1,39 @@
# Concept
- Homescreen
The homescreen of the App should display a list of upcoming tournaments
and a button to a tournament you are participating in.
If you press on a tournament in the list, the detail view should open
- Tournament Detail View
The tournament detail view displays all the information about a tournament,
like
## Homescreen
The homescreen of the App should display a list of upcoming tournaments
and a button to a tournament you are participating in.
## Setting
Dropdowns for
- Theme (System, Dark, Light)
- Language (English, German)
Textbox for
- Team Name
## Tournament Detail View
The tournament detail view displays all the information about a tournament,
like
- The registration period
- The maximum amount of teams
- The Tournament Format
- Preview pictures
- A button for registering your Team if in the registration period
- A button to view the stats of the tournament if it has been completed or is currently ongoing
## Tournament Teams View
Displays a List of Teams that have entered the Tournament
## Current Tournament View
The current tournament view displays the current state of an ongoing tournament which the participant entered in.
## Mockups
![Mockups](images/mockups.png)

BIN
docs/images/mockups.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB