Expand description
Use the built-in widgets or create your own.
Re-exports§
pub use button::Button;
pub use checkbox::Checkbox;
pub use column::Column;
pub use combo_box::ComboBox;
pub use container::Container;
pub use mouse_area::MouseArea;
pub use pane_grid::PaneGrid;
pub use pick_list::PickList;
pub use progress_bar::ProgressBar;
pub use radio::Radio;
pub use row::Row;
pub use rule::Rule;
pub use scrollable::Scrollable;
pub use slider::Slider;
pub use space::Space;
pub use stack::Stack;
pub use text::Text;
pub use text_editor::TextEditor;
pub use text_input::TextInput;
pub use themer::Themer;
pub use toggler::Toggler;
pub use tooltip::Tooltip;
pub use vertical_slider::VerticalSlider;
pub use svg::Svg;
pub use image::Image;
pub use canvas::Canvas;
pub use iced_renderer as renderer;
pub use iced_renderer::graphics;
pub use iced_runtime as runtime;
pub use iced_runtime::core;
Modules§
- Buttons allow your users to perform actions by pressing them.
- Canvases can be leveraged to draw interactive 2D graphics.
- Checkboxes can be used to let users make binary choices.
- Combo boxes display a dropdown list of searchable and selectable options.
- Containers let you align a widget inside their boundaries.
- Images display raster graphics in different formats (PNG, JPG, etc.).
- Keyed widgets can provide hints to ensure continuity.
- Display interactive elements on top of other widgets.
- Pane grids let your users split regions of your application and organize layout dynamically.
- Pick lists display a dropdown list of selectable options.
- Progress bars visualize the progression of an extended computer operation, such as a download, file transfer, or installation.
- Radio buttons let users choose a single option from a bunch of options.
- Rules divide space horizontally or vertically.
- Scrollables let users navigate an endless amount of content with a scrollbar.
- Sliders let users set a value by moving an indicator.
- Svg widgets display vector graphics in your application.
- Draw and interact with text.
- Text editors display a multi-line text input for text editing.
- Text inputs display fields that can be filled with text.
- Use the built-in theme and styles.
- Togglers let users make binary choices by toggling a switch.
- Tooltips display a hint of information over some element when hovered.
- Sliders let users set a value by moving an indicator.
Macros§
- Creates a [
Column
] with the given children. - Creates a keyed
Column
with the given children. - Creates some
Rich
text with the given spans. - Creates a [
Row
] with the given children. - Creates a
Stack
with the given children. - Creates a new
Text
widget with the provided content.
Structs§
- A widget that only rebuilds its contents when necessary.
- A widget that is aware of its dimensions.
Enums§
- A built-in theme.
Traits§
- Component
Deprecated A reusable, custom widget that uses The Elm Architecture.
Functions§
- Creates a new
Button
with the provided content. - Creates a new
Canvas
. - Creates a new
Container
that fills all the available space and centers its contents inside. - Creates a new
Checkbox
. - Creates a new [
Column
] with the given children. - Creates a new
ComboBox
. - component
Deprecated - Creates a new
Container
with the provided content. - Focuses the next focusable widget.
- Focuses the previous focusable widget.
- Creates a horizontal
Rule
with the given height. - Creates a new [
Space
] widget that fills the available horizontal space. - Displays a widget on top of another one, only when the base widget is hovered.
- Creates an
Element
that displays the iced logo with the giventext_size
. - Creates a new
Image
. - Creates a new
keyed::Column
from an iterator of elements. - Creates a new
Lazy
widget with the given dataDependency
and a closure that can turn this data into a widget tree. - A container intercepting mouse events.
- Wraps the given widget and captures any mouse button presses inside the bounds of the widget—effectively making it opaque.
- Creates a
PaneGrid
with the givenpane_grid::State
and view function. - Creates a new
PickList
. - Creates a new
ProgressBar
. - Creates a new
Radio
. - Creates a new
Responsive
widget with a closure that produces its contents. - Creates a new
Rich
text widget with the provided spans. - Creates a new [
Row
] from an iterator. - Creates a new
Scrollable
with the provided content. - Creates a new
Slider
. - Creates a new
Span
of text with the provided content. - Creates a new
Stack
with the given children. - Creates a new
Text
widget with the provided content. - Creates a new
TextEditor
. - Creates a new
TextInput
. - A widget that applies any
Theme
to its contents. - Creates a new
Toggler
. - Creates a new
Text
widget that displays the provided value. - Creates a vertical
Rule
with the given width. - Creates a new
VerticalSlider
. - Creates a new [
Space
] widget that fills the available vertical space.
Type Aliases§
- The default graphics renderer for
iced
.