ComposeDialogs
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
ComposeDialogs
menu
/
com.michaelflisar.composedialogs.dialogs.menu
/
MenuItem
Menu
Item
sealed
class
MenuItem
Inheritors
Item
Region
SubMenu
Divider
Custom
Members
Types
Custom
Link copied to clipboard
class
Custom
(
val
content
:
@
Composable
(
)
->
Unit
)
:
MenuItem
Divider
Link copied to clipboard
data
object
Divider
:
MenuItem
Item
Link copied to clipboard
data
class
Item
(
val
title
:
String
,
val
description
:
String
?
=
null
,
val
dismissOnClick
:
Boolean
=
true
,
val
icon
:
@
Composable
(
)
->
Unit
?
=
null
,
val
onClick
:
(
)
->
Unit
)
:
MenuItem
Region
Link copied to clipboard
data
class
Region
(
val
title
:
String
,
val
description
:
String
?
=
null
)
:
MenuItem
Sub
Menu
Link copied to clipboard
data
class
SubMenu
(
val
title
:
String
,
val
description
:
String
?
=
null
,
val
icon
:
@
Composable
(
)
->
Unit
?
=
null
,
val
items
:
List
<
MenuItem
>
)
:
MenuItem