Added Concept and mockups
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -118,4 +118,3 @@ app.*.symbols
|
|||||||
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|
||||||
!/dev/ci/**/Gemfile.lock
|
!/dev/ci/**/Gemfile.lock
|
||||||
|
|
||||||
docs/build/
|
|
||||||
|
|||||||
1
docs/build-pdf/.gitignore
vendored
Normal file
1
docs/build-pdf/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.pdf
|
||||||
16
docs/build.sh
Executable file
16
docs/build.sh
Executable 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
|
||||||
@@ -1,14 +1,39 @@
|
|||||||
# Concept
|
# Concept
|
||||||
|
|
||||||
- Homescreen
|
## Homescreen
|
||||||
|
|
||||||
The homescreen of the App should display a list of upcoming tournaments
|
The homescreen of the App should display a list of upcoming tournaments
|
||||||
and a button to a tournament you are participating in.
|
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
|
## 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,
|
The tournament detail view displays all the information about a tournament,
|
||||||
like
|
like
|
||||||
|
|
||||||
- The registration period
|
- The registration period
|
||||||
- The maximum amount of teams
|
- The maximum amount of teams
|
||||||
|
- The Tournament Format
|
||||||
- Preview pictures
|
- Preview pictures
|
||||||
- A button for registering your Team if in the registration period
|
- 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
|
- 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
|
||||||
|
|
||||||
|

|
||||||
BIN
docs/images/mockups.png
Normal file
BIN
docs/images/mockups.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 262 KiB |
Reference in New Issue
Block a user