Skip to content

Commit

Permalink
refactor: change var to val
Browse files Browse the repository at this point in the history
  • Loading branch information
sanao1006 committed Sep 7, 2024
1 parent 80334e6 commit 5fccf2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class PreviewViewModel {

var coroutineScope = MainScope()
val imagesStateFlow = MutableStateFlow<List<Pair<String, Long>>>(listOf())
private var searchText = MutableStateFlow("")
private val searchText = MutableStateFlow("")
private val lastEditingFileName = MutableStateFlow<String?>(null)
val statusText = MutableStateFlow("No images found")
private val _dropDownUiState = MutableStateFlow(ActionToolbarUiState())
Expand Down

0 comments on commit 5fccf2c

Please sign in to comment.