Home
last modified time | relevance | path

Searched refs:_actions (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ui/viewmodel/
DScreenshotViewModel.kt36 private val _actions = MutableStateFlow(emptyList<ActionButtonViewModel>()) constant
37 val actions: StateFlow<List<ActionButtonViewModel>> = _actions
69 val actionList = _actions.value.toMutableList() in addAction()
73 _actions.value = actionList in addAction()
78 val actionList = _actions.value.toMutableList() in setActionVisibility()
89 _actions.value = actionList in setActionVisibility()
96 val actionList = _actions.value.toMutableList() in updateActionAppearance()
107 _actions.value = actionList in updateActionAppearance()
114 val actionList = _actions.value.toMutableList() in removeAction()
117 _actions.value = actionList in removeAction()
[all …]