Implement font::load command in iced_native
This commit is contained in:
parent
b29de28d1f
commit
238154af4a
14 changed files with 384 additions and 241 deletions
|
|
@ -196,6 +196,7 @@ use iced_glow as renderer;
|
|||
|
||||
pub use iced_native::theme;
|
||||
pub use runtime::event;
|
||||
pub use runtime::font;
|
||||
pub use runtime::subscription;
|
||||
|
||||
pub use application::Application;
|
||||
|
|
@ -203,6 +204,7 @@ pub use element::Element;
|
|||
pub use error::Error;
|
||||
pub use event::Event;
|
||||
pub use executor::Executor;
|
||||
pub use font::Font;
|
||||
pub use renderer::Renderer;
|
||||
pub use result::Result;
|
||||
pub use sandbox::Sandbox;
|
||||
|
|
@ -213,8 +215,8 @@ pub use theme::Theme;
|
|||
pub use runtime::alignment;
|
||||
pub use runtime::futures;
|
||||
pub use runtime::{
|
||||
color, Alignment, Background, Color, Command, ContentFit, Font, Length,
|
||||
Padding, Point, Rectangle, Size, Vector,
|
||||
color, Alignment, Background, Color, Command, ContentFit, Length, Padding,
|
||||
Point, Rectangle, Size, Vector,
|
||||
};
|
||||
|
||||
#[cfg(feature = "system")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue