fui_core 0.19.2

Core library of FUI MVVM UI Framework
Documentation
1
2
3
4
5
6
7
8
9
10
//
// Attached values
//

use crate::{Property, TypeMapKey};

pub struct Visible;
impl TypeMapKey for Visible {
    type Value = Property<bool>;
}