[][src]Module iced::widget

Display information and interactive controls in your application.

Re-exports

For convenience, the contents of this module are available at the root module. Therefore, you can directly type:

use iced::{button, Button};

Stateful widgets

Some widgets need to keep track of local state.

These widgets have their own module with a State type. For instance, a TextInput has some text_input::State.

Re-exports

pub use button::Button;
pub use scrollable::Scrollable;
pub use slider::Slider;
pub use text_input::TextInput;

Modules

button

Allow your users to perform actions by pressing a button.

scrollable

Navigate an endless amount of content with a scrollbar.

slider

Display an interactive selector of a single value from a range of values.

text_input

Ask for information using text fields.

Structs

Checkbox

A box that can be checked.

Image

A frame that displays an image while keeping aspect ratio.

Radio

A circular button representing a choice.

Text

A paragraph of text.

Type Definitions

Column

A container that distributes its contents vertically.

Container

An element decorating some content.

Row

A container that distributes its contents horizontally.