Crate fluix

Crate fluix 

Source
Expand description

Fluix - A GPUI-based UI Component Library

§Features

  • Basic Components: Buttons, inputs, checkboxes, etc.
  • Form Components: Text inputs, dropdowns, date pickers, etc.
  • Layout Components: Modals, drawers, tabs, etc.
  • Advanced Components: Tables, trees, charts, etc.

§Example

use fluix::prelude::*;

let input = TextInput::new(cx)
    .placeholder("Enter text...")
    .on_change(|value| {
        println!("Value: {}", value);
    });

Re-exports§

pub use assets::Assets;
pub use components::*;
pub use theme::*;
pub use utils::*;

Modules§

assets
components
prelude
Prelude module for common imports
theme
utils