GuiTextBox method

  1. @override
int GuiTextBox(
  1. RectangleD bounds,
  2. MemoryPointer<RChar> text,
  3. int textSize,
  4. bool editMode,
)
override

Text Box control, updates input text

Implementation

@override
int GuiTextBox(
  RectangleD bounds,
  MemoryPointer<RChar> text,
  int textSize,
  bool editMode,
) => _wasm.GuiTextBox(
  $.Rectangle$.Ref1(bounds).toJS,
  text.toJS,
  textSize.toJS,
  editMode.toJS,
);