diff options
Diffstat (limited to 'src/widgets.rs')
-rw-r--r-- | src/widgets.rs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/widgets.rs b/src/widgets.rs index eb5766b..e69de29 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -1,30 +0,0 @@ -use gtk::prelude::*; -use relm4::{ - gtk, RelmWidgetExt, WidgetTemplate, -}; - - -#[relm4::widget_template(pub)] -impl WidgetTemplate for FieldWithLabel { - view! { - #[name = "layout"] - gtk::Box { - set_orientation: gtk::Orientation::Horizontal, - - #[name = "label"] - gtk::Label { - set_width_request: 150, - set_height_request: 36, - }, - - #[name = "input_wrapper"] - gtk::Box { - set_orientation: gtk::Orientation::Horizontal, - set_css_classes: &["linked"], - - #[name = "input"] - gtk::Entry { set_hexpand: true }, - }, - } - } -} |