add: TODOs and documentation for atomic components

This commit is contained in:
odweta
2026-05-26 11:15:22 +02:00
parent 83b7286a6f
commit 835d28d857
3 changed files with 21 additions and 0 deletions
@@ -3,6 +3,13 @@ package app.odweta.medilarm.ui.components
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
/**
* An element featuring the chosen wake-up time as well as a time chooser (with the ability
* to choose hours AND minutes - HH:MM)
*
* TODO: {ALARM} chosen time
* TODO: {ALARM} HH:MM chooser
*/
@Composable
fun MedilarmAlarm(modifier: Modifier = Modifier) {
@@ -3,6 +3,13 @@ package app.odweta.medilarm.ui.components
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
/**
* An element with a progress indicator and a time chooser (in minutes) for the length
* of the meditation session
*
* TODO: {MEDITATION} progress indicator
* TODO: {MEDITATION} time chooser
*/
@Composable
fun MedilarmMeditation(modifier: Modifier = Modifier) {
@@ -3,6 +3,13 @@ package app.odweta.medilarm.ui.components
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
/**
* A top bar featuring the app's name on the left side and a button to access the settings page
* on the right side
*
* TODO: {TOOLBAR} name
* TODO: {TOOLBAR} settings button
*/
@Composable
fun MedilarmToolbar(modifier: Modifier = Modifier) {