Skip to content
Snippets Groups Projects
Commit 907fc891 authored by Fodor Patrik's avatar Fodor Patrik :ghost:
Browse files

Create values for userdata

parent 2d88cb81
Branches
Tags
No related merge requests found
package hu.bme.kszk.szobatarsch.data
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.*
import hu.bme.kszk.szobatarsch.composable.DropDownItem
object GenderDropDownItems {
val DropDownItems = listOf(
DropDownItem(
title = "Male",
image = Icons.Default.Male,
),
DropDownItem(
title = "Female",
image = Icons.Default.Female,
),
)
}
object MajorDropDownItems {
val DropDownItems = listOf(
DropDownItem(
title = "Mérnökinformatikus",
image = Icons.Default.Computer,
),
DropDownItem(
title = "Villamos mérnök",
image = Icons.Default.Bolt,
),
DropDownItem(
title = "Épitész",
image = Icons.Default.Architecture,
),
)
}
val bedTimeList = listOf(
"20 órakor",
"21 órakor",
"22 órakor",
"23 órakor",
"00 órakor",
"01 órakor",
"02 órakor",
"03 órakor",
"04 órakor",
"Később"
)
val wakeUpList = listOf(
"5 órakor",
"6 órakor",
"7 órakor",
"8 órakor",
"9 órakor",
"10 órakor",
"11 órakor",
"12 órakor",
"13 órakor",
"Később"
)
val cleaningList = listOf(
"Ritkán",
"Néha",
"So-so",
"Gyakran",
"Nagyon gyakran"
)
val storageSpaceList = listOf(
"Nincs",
"Egy bőrönd",
"Átlagos",
"Kicsit sok cuccom van",
"Még legalább egy családnak elég lenne",
)
val loudnessList = listOf(
"Maga vagyok a csend",
"Néha hangos vagyok",
"Az esetek felében hangos vagyok",
"Gyakran vagyok hangos",
"Csak ordibálva beszélek és/vagy hangosan hallgatok zenét"
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment