//! Canvas widget for custom drawing
//!
//! Provides a drawing surface for rendering custom graphics like
//! Gantt charts, diagrams, graphs, etc.
//!
//! Supports two rendering modes:
//! - **Character mode**: Standard character-based drawing
//! - **Braille mode**: High-resolution drawing using braille patterns (2x4 dots per cell)
pub use ;
pub use ClipRegion;
pub use DrawContext;
pub use Layer;
pub use Transform;
pub use ;
// Re-export braille context at the top level
pub use BrailleContext;