Skip to content

Commit

Permalink
Step 8 - Assignment message added
Browse files Browse the repository at this point in the history
  • Loading branch information
aldefy committed Jun 30, 2024
1 parent 7144a6e commit 01d4242
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Add
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.DisposableEffect
import androidx.compose.runtime.LaunchedEffect
Expand Down Expand Up @@ -53,7 +54,7 @@ class HomeScreen(private val appModule: AppModule) : Screen {
}
var currentSearchQuery by remember { mutableStateOf("") }
var isSearchBarActive by remember { mutableStateOf(false) }
LaunchedEffect(Unit){
LaunchedEffect(Unit) {
Logger.d("NotesCRUD") { "HomeScreen called fetchNotes" }
viewModel.fetchNotes()
}
Expand Down Expand Up @@ -89,6 +90,10 @@ class HomeScreen(private val appModule: AppModule) : Screen {
}
)
}
item {
Text("Currently its buggy - assignment #1 , ensure app functions and updates on new note")
}

NoteItems(uiState.savedNotes, onClick = {}) {
//onDismissed
}
Expand Down

0 comments on commit 01d4242

Please sign in to comment.