NssButton
How to use
ES6 module import
import {NssButtons} from "nui://nss_libs/ui/NssButtons/NssButtons.js";Simple button
import {NssButtons} from "nui://nss_libs/ui/NssButtons/NssButtons.js";
/**
* @type {NssButtons}
*/
const buttons = new NssButtons();
/**
* @type {NssButton}
*/
const btn = buttons.create('Button text');
btn
.setGrey()
.setEnabled()
.setSizeLarge()
.onClick(() => {
// Do your stuff here...
})
.appendTo(document.body);NssButton methods
NssButton methodsGlowing
Colors
Sizes
Other
Last updated
Was this helpful?