Skip to content

Commit

Permalink
[Issue: 7] Add Emoji to exports (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fintasys authored Apr 24, 2021
1 parent 370bc65 commit b55f1dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4

* Make Emoji class accessible 🙌

## 1.0.3

* Organize imports
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class _MyAppState extends State<MyApp> {
child: SizedBox(
height: 250,
child: EmojiPicker(
onEmojiSelected: (category, emoji) {
onEmojiSelected: (Category category, Emoji emoji) {
_controller
..text += emoji.emoji
..selection = TextSelection.fromPosition(
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.3"
version: "1.0.4"
ffi:
dependency: transitive
description:
Expand Down
1 change: 1 addition & 0 deletions lib/emoji_picker_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export 'package:emoji_picker_flutter/src/emoji_picker.dart';
export 'package:emoji_picker_flutter/src/emoji_picker_builder.dart';
export 'package:emoji_picker_flutter/src/category_icons.dart';
export 'package:emoji_picker_flutter/src/config.dart';
export 'package:emoji_picker_flutter/src/emoji.dart';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: emoji_picker_flutter
description: A Flutter package that provides an Emoji picker widget with 1500+ emojis in 8 categories.
version: 1.0.3
version: 1.0.4
homepage: https://github.com/Fintasys/emoji_picker_flutter

environment:
Expand Down

0 comments on commit b55f1dc

Please sign in to comment.