mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
30ce5c7f57
- add button to show emoji keyboard - change database directory for debug builds Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
27 lines
759 B
Dart
27 lines
759 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:emoji_picker_flutter/emoji_picker_flutter.dart';
|
|
|
|
import 'chat.dart';
|
|
|
|
class ChatEmojiPicker extends StatelessWidget {
|
|
final ChatController controller;
|
|
const ChatEmojiPicker(this.controller, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AnimatedContainer(
|
|
duration: const Duration(milliseconds: 300),
|
|
height: controller.showEmojiPicker
|
|
? MediaQuery.of(context).size.height / 2
|
|
: 0,
|
|
child: controller.showEmojiPicker
|
|
? EmojiPicker(
|
|
onEmojiSelected: controller.onEmojiSelected,
|
|
onBackspacePressed: controller.emojiPickerBackspace,
|
|
)
|
|
: null,
|
|
);
|
|
}
|
|
}
|