Crate conrod_prompt

Crate conrod_prompt 

Source
Expand description

§Prompt widgets for conrod

These widgets are used to create prompts for the user to interact with on-screen. The library is organized as a generic Prompt widget which has an internal widget which accepts user interaction.

Some common user interaction cases are implemented already:

  • Ack: a prompt for when you want the user to see a message and acknowledge it
  • YesNo: a prompt for when you want the user to see a message and indicate whether or not they accept it

Re-exports§

pub use ack::Ack;
pub use yesno::YesNo;

Modules§

ack
The Ack widget and related items.
text_confirm
yesno
The YesNo widget and related items.

Structs§

Ids
Prompt
A general widget for displaying a floating prompt to the user. The prompt displays some message and offers the user an opportunity to respond to the message via a contained child widget, which accepts some form of input.
Style