relm4-macros 0.11.0

An idiomatic GUI library inspired by Elm and based on gtk4-rs
Documentation
1
2
3
4
5
6
7
8
9
10
use relm4::SimpleComponent;

struct TestComponent;

#[relm4_macros::component]
impl SimpleComponent for TestComponent {

}

fn main() {}