SilBottomPickerSimpleWidget constructor

const SilBottomPickerSimpleWidget(
  1. String title, {
  2. required List<String> dataList,
  3. int initialSelectedItem = 0,
  4. double? height,
  5. double? itemHeight,
  6. Widget? itemWidget,
  7. String? middlePrompt,
  8. Widget? middlePromptWidget,
  9. void tapSureSeletedFunc(
    1. int selected
    )?,
  10. void tapCancelFunc()?,
  11. Color? themeColor,
  12. EdgeInsetsGeometry? middlePromptPadding,
  13. Key? key,
})

Implementation

const SilBottomPickerSimpleWidget(this.title,
    {required this.dataList,
    this.initialSelectedItem = 0,
    this.height,
    this.itemHeight,
    this.itemWidget,
    this.middlePrompt,
    this.middlePromptWidget,
    this.tapSureSeletedFunc,
    this.tapCancelFunc,
    this.themeColor,
    this.middlePromptPadding,
    Key? key})
    : super(key: key);