GuiLabelButton method

int GuiLabelButton(
  1. RectangleD bounds,
  2. String? text
)

Implementation

int GuiLabelButton(
  RectangleD bounds,
  String? text,
) => run(
  () => 'GuiLabelButton($bounds, $text)',
  () => rl.Gui.GuiLabelButton(
    _refRectangle1(bounds).ref,
    refStr(text),
  ),
);