docs.rs failed to build waterui-text-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
waterui-text-0.2.2
WaterUI Text Components
Minimal, reactive text for WaterUI.
Basics
use Text;
// Plain text
let t = new;
// Size via font convenience
let large = new.size;
Reactive Text with text!
use binding;
use text; // function
// Macro is exported as `text!`
let name = binding;
let greet = text!; // updates on change
Tip: prefer text!(...) with reactive values; it formats reactively. For non-reactive values, Text::new("...") is fine.
Fonts
use ;
let text = new.font.size;
Integration
use vstack;
use text;
use ;