FLUTTER ECOSYSTEM

ky1vstar/cupertino_interactive_keyboard

एक फ्लटर प्लगइन जिसका उद्देश्य नेटिव आईओएस इंटरैक्टिवली डिस्मिस करने योग्य कीबोर्ड प्राप्त करना है

cupertino_interactive_keyboard प्रोजेक्ट कवर
Stars
14
Forks
5
अंतिम पुश (UTC)
6 जन॰ 2026
प्रोजेक्ट स्थिति
सक्रिय
Oleksandr Zhuhan GitHub avatar
GITHUB User

Oleksandr Zhuhan ↗

Ukraine
भाषाएँDartSwiftRubyObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 5 आइटम
  • flutter{"sdk":"flutter"}
  • plugin_platform_interface^2.0.2
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • go_routerडेवलपमेंट^17.0.1
  • lintडेवलपमेंट^2.1.2

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

Stand With Ukraine

Cupertino Interactive Keyboard

A Flutter plugin intended to achieve native iOS interactively dismissible keyboard. It can be used as temporary solution while we are waiting this issue to be resolved by the Flutter team 🙏. On other side, this plugin doesn't rely on questionable keyboard screenshot approach, so it is expected to work more solid.

https://raw.githubusercontent.com/ky1vstar/cupertino_interactive_keyboard/HEAD/resources/demo1.gif https://raw.githubusercontent.com/ky1vstar/cupertino_interactive_keyboard/HEAD/resources/demo2.gif

Getting Started

The CupertinoInteractiveKeyboard defines the area where the draggable keyboard is enabled. Using scrollable widget as its child is optional.

CupertinoInteractiveKeyboard(
  child: ListView.builder(
    ...
  ),
);

In chat-like UI where you have input bar attached to the bottom, you can use the CupertinoInputAccessory widget. It designed to use its child's height as native input accessory view size.

CupertinoInputAccessory(
  child: TextField(
    ...
  ),
);

See the full example of complete implementation.