pub fn build<T, V, F>(builder: F) -> impl View<T>where V: View<T>, F: FnOnce(&mut BuildCx<'_, '_>, &mut T) -> V,
Build a view from a closure.
This allows you to access the BuildCx while building the view.
BuildCx