remove_emoji_input_formatter 0.0.1+1 copy "remove_emoji_input_formatter: ^0.0.1+1" to clipboard
remove_emoji_input_formatter: ^0.0.1+1 copied to clipboard

Remove emoji or icon input formatter supported for TextField.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.amber.shade100,
        appBar: AppBar(
          title: const Text('Remove Emoji Input Formatter Demo'),
          centerTitle: true,
        ),
        body: Container(
          padding: const EdgeInsets.symmetric(horizontal: 40),
          alignment: Alignment.center,
          child: TextField(
            decoration: const InputDecoration(
              label: Text('Username'),
            ),
            inputFormatters: [RemoveEmojiInputFormatter()],
          ),
        ),
      ),
    );
  }
}
5
likes
150
pub points
90%
popularity

Publisher

unverified uploader

Remove emoji or icon input formatter supported for TextField.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

cupertino_icons, flutter

More

Packages that depend on remove_emoji_input_formatter