1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
//! A Bevy plugin the provides a simple single-line text input widget.
//!
//! # Examples
//!
//! See the [examples](https://github.com/xenira/bevy_ui_forms/crates/core/examples) folder.
//!
//! ```no_run
//! use bevy::prelude::*;
//! use bevy_ui_forms::{prelude::*, BevyUiFormsPlugins};
//!
//! fn main() {
//! App::new()
//! .add_plugins(DefaultPlugins)
//! .add_plugins(BevyUiFormsPlugins)
//! .add_systems(Startup, setup)
//! .run();
//! }
//!
//! fn setup(mut commands: Commands) {
//! commands.spawn(Camera2dBundle::default());
//! commands.spawn((NodeBundle::default(), TextInputBundle::default()));
//! }
//! ```
/// Clipboard support for text input.
#[cfg(feature = "clipboard")]
pub mod clipboard;
/// Forms
pub mod form;
/// Form element
pub mod form_element;
/// Form elements
pub mod form_elements;
use bevy::app::{PluginGroup, PluginGroupBuilder};
/// Derive macro available if serde is built with `features = ["derive"]`.
#[cfg(feature = "derive")]
pub use bevy_ui_forms_form_proc::form_struct;
#[cfg(feature = "derive")]
pub use bevy_ui_forms_form_proc::FormActions;
/// Re-export common use items for easy access.
pub mod prelude {
pub use crate::form::*;
pub use crate::form_element::*;
pub use crate::form_elements::button::*;
pub use crate::form_elements::text_input::*;
pub use crate::form_struct;
pub use crate::FormActions;
}
/// Plugin group for all `bevy_ui_forms` plugins.
pub struct BevyUiFormsPlugins;
impl PluginGroup for BevyUiFormsPlugins {
fn build(self) -> PluginGroupBuilder {
PluginGroupBuilder::start::<Self>()
.add(form::FormPlugin)
.add(form_element::FormElementPlugin)
.add(form_elements::text_input::TextInputPlugin)
.add(form_elements::button::ButtonPlugin)
}
}