rayquiro.app
rayquiro.app in 0.0.2 is an official installable native module for lower-level native Windows UI.
Install it with:
rqio install rayquiro.app
or locally:
rqio install rayquiro.app --local
Import
import rayquiro.app as app;
What It Is For
Use it when you want:
- a tiny utility window
- manually positioned controls
- direct control over text and button placement
- a lighter alternative to
rayquiro.ui
API
app.init(title, width, height)
app.button(text, x, y, width, height)
app.text(text, x, y, width, height)
app.msg(title, text)
app.run()
Example
import rayquiro.app as app;
app.init("Demo", 640, 360);
app.button("Click", 24, 24, 120, 32);
app.text("Hello from RayQuiro", 24, 72, 220, 24);
app.run();
Notes
rayquiro.appis an official native module in0.0.2- it remains Windows-first
- if you forget
app.run(), the window closes when the script ends