Crate cosmic::iced_widget
source · Expand description
Use the built-in widgets or create your own.
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.
- The official renderer for iced.
- Rules divide space horizontally or vertically.
- A renderer-agnostic native GUI runtime.
- 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.
- 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 generic widget that produces a message when pressed.
- A widget capable of drawing 2D graphics.
- A box that can be checked.
- A container that distributes its contents vertically.
- A widget for searching and selecting a single value from a list of options.
- A widget that aligns its contents inside of its boundaries.
- A frame that displays an image while keeping aspect ratio.
- A widget that only rebuilds its contents when necessary.
- Emit messages on mouse events.
- A collection of panes distributed using either vertical or horizontal splits to completely fill the space available.
- A widget for selecting a single value from a list of options.
- A bar that displays progress.
- A circular button representing a choice.
- A widget that is aware of its dimensions.
- A container that distributes its contents horizontally.
- Display a horizontal or vertical rule for dividing content.
- A widget that can vertically display an infinite amount of content with a scrollbar.
- An horizontal bar and a handle that selects a single value from a range of values.
- An amount of empty space.
- A container that displays children on top of each other.
- A vector graphics image.
- A multi-line text input.
- A field that can be filled with text.
- A widget that applies any
Theme
to its contents. - A toggler widget.
- An element to display a widget over another.
- An vertical bar and a handle that selects a single value from a range of values.
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
. - A bunch of text.