UiInlinePopup constructor

const UiInlinePopup({
  1. Key? key,
  2. required List<UiInlinePopupItem> items,
  3. required Widget trigger,
  4. double width = 180,
  5. Color backgroundColor = Colors.white,
  6. void onItemSelected(
    1. String label
    )?,
})

Implementation

const UiInlinePopup({
  super.key,
  required this.items,
  required this.trigger,
  this.width = 180,
  this.backgroundColor = Colors.white,
  this.onItemSelected,
});