FLUTTER ECOSYSTEM

kamran8545/artistic_multilingual_keyboards

Uma biblioteca Flutter para adicionar teclados multilíngues em aplicativos Flutter

Capa do projeto artistic_multilingual_keyboards
Stars
5
Forks
3
Último push (UTC)
8 de ago. de 2026
Status do projeto
Ativo
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.

LinguagensDartSwiftKotlinObjective-C

Tópicos técnicos

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 3 itens
  • flutter{"sdk":"flutter"}
  • flutter_testDesenvolvimento{"sdk":"flutter"}
  • flutter_lintsDesenvolvimento^1.0.0

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher 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