defaultActionLabel static method

Widget defaultActionLabel(
  1. BuildContext context,
  2. String label
)

Implementation

static Widget defaultActionLabel(BuildContext context, String label) => Text(
      label,
      style: TextStyle(
          color: Theme.of(context).colorScheme.secondary,
          fontWeight: FontWeight.bold),
    );