secondaryForeground method

Widget secondaryForeground()

Implementation

Widget secondaryForeground() {
  return Builder(
    builder: (context) {
      final themeData = Theme.of(context);
      return DefaultTextStyle.merge(
        child: this,
        style: TextStyle(
          color: themeData.colorScheme.secondaryForeground,
        ),
      );
    },
  );
}