CustomExpansionTile method

Widget CustomExpansionTile(
  1. String title,
  2. List<Widget> children,
  3. bool initialExpanded
)

Implementation

Widget CustomExpansionTile(
  String title,
  List<Widget> children,
  bool initialExpanded,
) {
  return ExpansionTile(
    title: Text(
      title,
      style: TextStyle(
        fontWeight: FontWeight.bold,
        fontSize: 20,
        color: Colors.blue,
      ),
    ),
    children: children,
    initiallyExpanded: initialExpanded,
  );
}