FLUTTER ECOSYSTEM

kamran8545/artistic_multilingual_keyboards

Flutter 앱에 다국어 키보드를 추가하기 위한 플러터 라이브러리

artistic_multilingual_keyboards 프로젝트 이미지
Stars
5
Forks
3
최근 푸시(UTC)
2026. 8. 8.
프로젝트 상태
활성
Kamran Khan GitHub avatar
GITHUB User

Kamran Khan ↗

Senior Flutter Developer — 20+ production apps, Clean Architecture, BLoC & Riverpod. Shipping to App Store & Play Store since 2018.

언어DartSwiftKotlinObjective-C

기술 주제

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 3 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}
  • flutter_lints개발 의존성^1.0.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Artistic Multilingual Keyboards

A fully customizable Flutter package that lets you add multilingual keyboards to your app — English, Urdu, and Sindhi, plus numeric and symbolic layouts. Fully customizable designs.

pub.dev License: MIT Platforms: Android, iOS

Features

  • English, Urdu, Sindhi keyboards — numeric and symbolic layouts too
  • Fully customizable — key styling, elevation, shadows, border radius, colors
  • Language switching button, custom keyboard actions (next/done), FocusNode + controller driven
  • Lightweight, no external dependencies
Example
https://user-images.githubusercontent.com/28790321/189836219-6cd22737-e23e-495f-8f4f-5b6cdf1116d4.gif
Keyboard designs
English Urdu Sindhi Numeric & Symbolic
https://user-images.githubusercontent.com/28790321/189832672-97c38cb9-0fb4-438f-a8bb-edb3b05f0360.jpeg https://user-images.githubusercontent.com/28790321/189832843-2a11d11d-c2ca-4210-a34e-27a07ee07ab2.jpeg https://user-images.githubusercontent.com/28790321/189833029-1caa144a-918c-4970-a7e7-431dfc595bec.jpeg https://user-images.githubusercontent.com/28790321/189833668-8d70b1d5-27b3-4287-8197-350346dcee07.jpeg

Installation

Add the dependency to your pubspec.yaml:

dependencies:
  artistic_multilingual_keyboards: ^0.0.4

Or run:

$ flutter pub add artistic_multilingual_keyboards
Import
import 'package:artistic_multilingual_keyboards/keyboards_layouts/keyboard_layouts.dart';

Usage

Check the complete example in the Example folder.

KeyboardLayouts(
  textEditingController: TextEditingController(),
  focusNode: FocusNode(),
  isKeyboardOpen: true,
  enableLanguageButton: false,
  keyElevation: 12,
  keyShadowColor: Colors.black,
  keyBorderRadius: BorderRadius.circular(10),
  keyboardAction: KeyboardAction.actionNext,
  currentKeyboardLanguage: KeyboardLanguages.english,
);

Contribution

  1. Use this package, test it, and report any issues/bugs found.
  2. Contribute by adding more features.
  3. Share your suggestion or feedback.

Developer

Kamran Khan