useCupertino property

bool useCupertino

Indicates if the App is running the Cupertino interface theme.

Implementation

static bool get useCupertino =>
    (_appState != null && _appState!.useCupertino!) ||
    (UniversalPlatform.isIOS &&
        (_appState == null || !_appState!.switchUI!)) ||
    (UniversalPlatform.isAndroid &&
        (_appState == null || _appState!.switchUI!));