prelude.rs
1//! The GPUI prelude is a collection of traits and types that are widely used
2//! throughout the library. It is recommended to import this prelude into your
3//! application to avoid having to import each trait individually.
4
5pub use crate::{
6 AppContext as _, BorrowAppContext, Context, Element, InteractiveElement, IntoElement,
7 ParentElement, Refineable, Render, RenderOnce, StatefulInteractiveElement, Styled, StyledImage,
8 VisualContext, util::FluentBuilder,
9};