native_emoji_keyboard 0.0.4+1 copy "native_emoji_keyboard: ^0.0.4+1" to clipboard
native_emoji_keyboard: ^0.0.4+1 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  static const StandardMessageCodec _decoder = StandardMessageCodec();

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    Map map = Map();
    map["text"] = "Smiley COOL 😎👍";

    return MaterialApp(
      home: SizedBox(
        width: 350,
        height: 250,
        child: UiKitView(
            viewType: "EmojiTextField",
            creationParams: map,
            creationParamsCodec: _decoder),
      ),
    );
  }
}
3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on native_emoji_keyboard