From ce0c2160ccfee8017ae7e283f5ba8bbb19c94453 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 16 Sep 2026 14:44:31 -0400 Subject: [PATCH] fixup readme --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 20f2810..b555773 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A generic but configurable emoji picker for Flutter. Defaults to including only - Support for free text selection - Sleek M3 design: -![A screenshot of the emoji picker, showing a searchbar, category selection, and two categories of emojis](assets/screenshot.png) +![A screenshot of the emoji picker, showing a searchbar, category selection, and two categories of emojis](https://git.federated.nexus/Henry-Hiles/material_emoji_picker/raw/branch/main/assets/screenshot.png) ## Getting started @@ -21,14 +21,14 @@ An example, using `EmojiPicker` as a bottom sheet: ```dart showModalBottomSheet( - isScrollControlled: true, - context: context, - builder: (context) => EmojiPicker( - onSelection: (emoji) { - Navigator.of(context).pop(); - message.sendReaction(emoji); - }, - ), + isScrollControlled: true, + context: context, + builder: (context) => EmojiPicker( + onSelection: (emoji) { + Navigator.of(context).pop(); + message.sendReaction(emoji); + }, + ), ); ```