bevy_simple_text_input 0.4.0

Bevy plugin for a simple single-line text input widget.
Documentation
# bevy_simple_text_input

[![crates.io](https://img.shields.io/crates/v/bevy_simple_text_input.svg)](https://crates.io/crates/bevy_simple_text_input)
[![docs](https://docs.rs/bevy_simple_text_input/badge.svg)](https://docs.rs/bevy_simple_text_input)
[![Following released Bevy versions](https://img.shields.io/badge/Bevy%20tracking-released%20version-lightblue)](https://bevyengine.org/learn/book/plugin-development/#main-branch-tracking)

An unambitious single-line text input widget for `bevy_ui`.

![animated screenshot of text input widget gaining focus and text typed and submitted](assets/screenshot.gif)

## Usage

> [!IMPORTANT]
> Code and examples in the main branch are under development and may not be compatible with the released version on crates.io. The [`latest`]https://github.com/rparrett/bevy_simple_text_input/tree/latest branch will contain the code from the most recent release.

See [`examples/basic.rs`](https://github.com/rparrett/bevy_simple_text_input/blob/latest/examples/basic.rs).

## Compatibility

| `bevy_simple_text_input` | `bevy` |
| :--                      | :--    |
| `0.4.0`                  | `0.13` |
| `0.3.1`                  | `0.12` |
| `0.1`-`0.2`              | `0.11` |

## Contributing

Please feel free to open a PR, but keep in mind this project's goals. This is meant to be a simple single-line text widget.

The code should be simple enough for users to quickly understand and modify for their own purposes.

## Alternatives

If you need more features, check out [`bevy_cosmic_edit`](https://github.com/StaffEngineer/bevy_cosmic_edit) or [`bevy_egui`](https://github.com/mvlabat/bevy_egui).