1
2
3
4
5
6
7
8
9
use super::*;

pub struct Void;

impl Widget for Void {
    fn calc_constraints(&mut self, _children: &ConstraintsContext) -> Constraints {
        Constraints::default()
    }
}