Last updated:
0 purchases
kurdish keyboard
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.
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>
copied to clipboard
Usage #
Then you just have to import the package with
import 'package:kurdish_keyboard/kurdish_keyboard.dart';
copied to clipboard
To use kurdish kayboard in your app you must create kurdish keyboard as showing below:
Declare Text Edit Controller
TextEditingController tec = TextEditingController();
copied to clipboard
implement as a widget in your app
Simple example
KurdishKeyboard(
textController: tec,
),
copied to clipboard
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,
),
),
),
copied to clipboard
A few resources to get you started if this is your first Flutter project:
Lab: Write your first Flutter app
Cookbook: Useful Flutter samples
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.