12 lines
209 B
Rust
12 lines
209 B
Rust
|
use makepad_widgets::*;
|
||
|
|
||
|
#[derive(Clone, WidgetAction, Eq, Hash, PartialEq)]
|
||
|
pub enum StackViewAction {
|
||
|
None,
|
||
|
ShowAddContact,
|
||
|
ShowMoments,
|
||
|
ShowMyProfile,
|
||
|
ShowCounterScreen,
|
||
|
ShowChat,
|
||
|
}
|