From ceb02f4a36769c488c2525db2fb73f092a6c2706 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 11 Nov 2019 05:26:08 +0100 Subject: Implement `Container` widget Remove `align_self` and `justify_content` methods --- core/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/src/lib.rs') diff --git a/core/src/lib.rs b/core/src/lib.rs index 877a8f85..ab43ab94 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -3,7 +3,6 @@ pub mod widget; mod align; mod background; mod color; -mod justify; mod length; mod point; mod rectangle; @@ -12,7 +11,6 @@ mod vector; pub use align::Align; pub use background::Background; pub use color::Color; -pub use justify::Justify; pub use length::Length; pub use point::Point; pub use rectangle::Rectangle; -- cgit