new: server tag animation

This commit is contained in:
lollipopkit
2023-05-31 18:10:18 +08:00
parent 55a13799b2
commit 6091cd0da8
6 changed files with 58 additions and 33 deletions

View File

@@ -50,8 +50,11 @@ class TagEditor extends StatelessWidget {
if (index < tags.length) {
return _buildTagItem(context, tags[index], false);
} else if (index > tags.length) {
return _buildTagItem(context,
tagSuggestions![index - tags.length - 1], true,);
return _buildTagItem(
context,
tagSuggestions![index - tags.length - 1],
true,
);
}
return const VerticalDivider();
},