FLUTTER ECOSYSTEM

ky1vstar/cupertino_interactive_keyboard

ネイティブなiOSのインタラクティブに閉じられるキーボードを実現することを目的としたFlutterプラグイン

cupertino_interactive_keyboard のプロジェクト画像
Stars
14
Forks
5
最終プッシュ(UTC)
2026/01/06
プロジェクト状態
公開中
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.