AlphabetListScrollView constructor

const AlphabetListScrollView({
  1. Key? key,
  2. required List<String> strList,
  3. IndexedWidgetBuilder? itemBuilder,
  4. TextStyle highlightTextStyle = const TextStyle(color: Colors.red),
  5. TextStyle normalTextStyle = const TextStyle(color: Colors.black),
  6. bool showPreview = false,
  7. List<AlphabetScrollListHeader> headerWidgetList = const [],
  8. required IndexedHeight indexedHeight,
  9. bool keyboardUsage = false,
})

Implementation

const AlphabetListScrollView(
    {Key? key,
    required this.strList,
    this.itemBuilder,
    this.highlightTextStyle = const TextStyle(color: Colors.red),
    this.normalTextStyle = const TextStyle(color: Colors.black),
    this.showPreview = false,
    this.headerWidgetList = const [],
    required this.indexedHeight,
    this.keyboardUsage = false})
    : super(key: key);