settingsCell abstract method

Widget settingsCell(
  1. BuildContext context, {
  2. Key? key,
  3. Set<MaterialState>? materialStates,
  4. Map<String, dynamic>? extraInfo,
  5. required Widget child,
})

Setting Cell This generates the frame of a settings cell, with the contents supplied by the child parameter

  • context the current BuildContext
  • materialStates a set of the current states this cell is in (pressed, selected, disabled, etc)
  • extraInfo a map where you can pass additional info through to your subclasses to be used however you need
  • child the rendered contents of the cell, possibly generated via one of the ...Content() methods below

Implementation

Widget settingsCell(BuildContext context, {Key? key, Set<MaterialState>? materialStates, Map<String, dynamic>? extraInfo, required Widget child});