igInputScalar function

int igInputScalar(
  1. Pointer<Uint8> label,
  2. int data_type,
  3. Pointer<Void> p_data,
  4. Pointer<Void> p_step,
  5. Pointer<Void> p_step_fast,
  6. Pointer<Uint8> format,
  7. int flags
)
byte igInputScalar(
 byte* label ,
 ImGuiDataType data_type ,
 void* p_data ,
 void* p_step ,
 void* p_step_fast ,
 byte* format ,
 ImGuiInputTextFlags flags
);

Implementation

int igInputScalar(
        Pointer<Uint8> label,
        int data_type,
        Pointer<Void> p_data,
        Pointer<Void> p_step,
        Pointer<Void> p_step_fast,
        Pointer<Uint8> format,
        int flags) =>
    _igInputScalar(
        label, data_type, p_data, p_step, p_step_fast, format, flags);