BloomNativeInputHost constructor

const BloomNativeInputHost({
  1. Key? key,
  2. String? initialValue,
  3. String? placeholder,
  4. bool isPassword = false,
  5. int maxLines = 1,
  6. required BloomComputedStyle style,
  7. void onInput(
    1. BloomEvent
    )?,
  8. void onChange(
    1. BloomEvent
    )?,
})

Creates a BloomNativeInputHost widget.

Implementation

const BloomNativeInputHost({
  super.key,
  this.initialValue,
  this.placeholder,
  this.isPassword = false,
  this.maxLines = 1,
  required this.style,
  this.onInput,
  this.onChange,
});