textfield_kh 0.0.9 copy "textfield_kh: ^0.0.9" to clipboard
textfield_kh: ^0.0.9 copied to clipboard

A Package solve keyboard of textfield problem with local keyboard in asia of "," and "." and this package make easy to using and customization textfield like pro textfield.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:textfield_kh/textfield_kh.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  final controller = TextEditingController();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: TextFieldKh(
          height: 60,
          onchange: (value) {},
          controller: controller,
          isCurrencyFormat: true,
          keyboardType: const TextInputType.numberWithOptions(decimal: true),
        ),
      ),
    );
  }
}
5
likes
90
pub points
13%
popularity

Publisher

unverified uploader

A Package solve keyboard of textfield problem with local keyboard in asia of "," and "." and this package make easy to using and customization textfield like pro textfield.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, intl, pattern_formatter

More

Packages that depend on textfield_kh