mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
c34a7a92fb
* chore: don't use cache when building release package * feat: refactor icon widget design * feat: sync the emoji between page and view * feat: use cache to store the emoji data to prevent reloading * feat: customize the emoji item builder * feat: add i18n and shuffle emoji button * fix: integration test * feat: replace emoji picker in Grid and slash menu * feat: support adding icon on mobile platform * feat: support adding and removing icon on mobile * test: add integration tests
11 lines
246 B
Dart
11 lines
246 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'base.dart';
|
|
|
|
extension EmojiTestExtension on WidgetTester {
|
|
Future<void> tapEmoji(String emoji) async {
|
|
final emojiWidget = find.text(emoji);
|
|
await tapButton(emojiWidget);
|
|
}
|
|
}
|