repose-core 0.15.0

Repose's core runtime, view model, signals, composition locals, and animation clock.
Documentation
pub use crate::animation::*;
pub use crate::color::Color;
pub use crate::dnd::*;
pub use crate::effects::{Dispose, effect, on_unmount};
pub use crate::error::*;
pub use crate::frame_clock::{peek_frame_request, request_frame, take_frame_request};
pub use crate::geometry::{Rect, Size, Vec2};
pub use crate::input::*;
pub use crate::locals::{
    Density, Dp, TextDirection, TextScale, Theme, UiScale, density, dp_to_px, text_direction,
    text_scale, theme, ui_scale, with_density, with_text_direction, with_text_scale, with_theme,
    with_ui_scale,
};
pub use crate::modifier::Modifier;
pub use crate::render_api::{GlyphRasterConfig, RenderBackend};
pub use crate::runtime::{
    ComposeGuard, Frame, Scheduler, remember, remember_state, remember_state_with_key,
    remember_with_key,
};
pub use crate::scope::{Scope, current_scope, scoped_effect};
pub use crate::semantics::{Role, Semantics};
pub use crate::shortcuts;
pub use crate::signal::{Signal, signal};
pub use crate::view::{
    ImageFit, ImageHandle, Scene, SceneNode, TextOverflow, View, ViewId, ViewKind,
};
pub use taffy::{
    AlignContent, AlignItems, AlignSelf, FlexDirection, FlexWrap, JustifyContent, JustifyItems,
    JustifySelf,
};