FLUTTER ECOSYSTEM

ky1vstar/cupertino_interactive_keyboard

네이티브 iOS 상호작용식으로 닫을 수 있는 키보드를 구현하기 위한 Flutter 플러그인

cupertino_interactive_keyboard 프로젝트 이미지
Stars
14
Forks
5
최근 푸시(UTC)
2026. 1. 6.
프로젝트 상태
활성
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.