Mutually exclusive selection from a list.
import { RadioGroup } from 'nikcli-tui';
new RadioGroup({ parent: screen, options: ['A','B','C'] });
npm run tsx:core-gallery
string
npm i nikcli-tui
import { RadioGroup } from "nikcli-tui";
new RadioGroup({ parent: screen, top: 1, left: 2, options: ['One','Two','Three'], onChange: (i, v) => console.log(i, v) , });
new RadioGroup({ parent: screen, top: 1, left: 30, options: ['A','B','C'], orientation: 'horizontal', spacing: 4 , });