isIOS26OrAbove property

bool get isIOS26OrAbove

True on iOS 26 ("Liquid Glass") and above, where the system keyboard has rounded top corners. False on other platforms, or on iOS if the version string can't be parsed (so unknown versions fall back to the pre-iOS-26 flat-keyboard look rather than guessing).

Implementation

static bool get isIOS26OrAbove => isIOS && (iosMajorVersion ?? 0) >= 26;