kurdish_keyboard 0.0.3 copy "kurdish_keyboard: ^0.0.3" to clipboard
kurdish_keyboard: ^0.0.3 copied to clipboard

Kurdish keyboard layout.

Kurdish keyboard in flutter #

this keyboard is customized textfiled widget in flutter to input kurdish characters my be some of them is does'nt exists in default keyboards in android and ios platforms.

image image

image

Getting Started #

To get start implementing kurdish keyboard in your flutter app

Add this to your package's pubspec.yaml file:

dependencies:
  kurdish_keyboard: <latest version>

Usage #

Then you just have to import the package with

import 'package:kurdish_keyboard/kurdish_keyboard.dart';

To use kurdish kayboard in your app you must create kurdish keyboard as showing below:

Declare Text Edit Controller

  TextEditingController tec = TextEditingController();

implement as a widget in your app

Simple example


KurdishKeyboard(
    textController: tec,
),

advanced example


KurdishKeyboard(
    backgroundColor: Colors.lightBlueAccent,
    keyColors: Colors.blue,
    keyTextColor: Colors.grey,
    textController: tec,
    showCursor: true,
    textStyle: TextStyle(color: Colors.blueAccent),
    decoration: InputDecoration(
        labelStyle: TextStyle(color: Colors.blueGrey),
        labelText: "گوتنێن ناڤداران",
        hintStyle: TextStyle(
        color: Colors.blueAccent,
        ),
    ),
),

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.