FLUTTER ECOSYSTEM

ky1vstar/cupertino_interactive_keyboard

Ein Flutter-Plugin, das darauf abzielt, eine native iOS-interaktive abbrechbare Tastatur zu erreichen

Projektcover von cupertino_interactive_keyboard
Stars
14
Forks
5
Letzter Push (UTC)
06.01.2026
Projektstatus
Aktiv
Oleksandr Zhuhan GitHub avatar
GITHUB User

Oleksandr Zhuhan ↗

Ukraine
SprachenDartSwiftRubyObjective-C

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 5 Einträge
  • flutter{"sdk":"flutter"}
  • plugin_platform_interface^2.0.2
  • flutter_testEntwicklung{"sdk":"flutter"}
  • go_routerEntwicklung^17.0.1
  • lintEntwicklung^2.1.2

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

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.