cupertinoThemeOf static method

CupertinoThemeData cupertinoThemeOf(
  1. BuildContext context
)

get current CupertinoThemeData of current ThemeManger

Implementation

static CupertinoThemeData cupertinoThemeOf(BuildContext context) {
  _ThemeManager inherited =
      context.dependOnInheritedWidgetOfExactType<_ThemeManager>()!;
  return inherited
      .data!
      .cupertinoThemesMap[inherited.data!.currentCupertinoThemeKey!]!
      .themeData;
}