ribir_painter 0.4.0-alpha.63

A non-intrusive declarative GUI framework, to build modern native/wasm cross-platform applications.
Documentation
#![allow(clippy::needless_lifetimes)]

//! A 2d logic painter, generate the paint command
pub mod color;
pub mod filter;
mod painter;
pub mod path;
pub mod path_builder;
pub use path::*;
mod text;
pub use text::*;

pub use crate::{
  color::{Color, GradientStop, LightnessTone},
  filter::*,
  painter::*,
};
pub mod pixel_image;
mod style;
pub use style::*;

pub use crate::pixel_image::{ColorFormat, PixelImage};
mod svg;
pub use svg::Svg;