widgem 0.0.1

A lightweight cross-platform desktop widget toolkit
Documentation
use {
    super::{Widget, WidgetBaseOf},
    crate::impl_widget_base,
};

pub struct PaddingBox {
    base: WidgetBaseOf<Self>,
}

impl PaddingBox {
    // TODO: method to set content and options
}

impl Widget for PaddingBox {
    impl_widget_base!();

    fn new(base: WidgetBaseOf<Self>) -> Self {
        Self { base }
    }
}