fix: Added top padding to highlight

This commit is contained in:
Deven Joshi
2021-01-18 20:07:21 +05:30
parent 623b6f0c76
commit 7412a507e2
@@ -956,7 +956,10 @@ class _MessageListViewState extends State<MessageListView> {
end: colorTheme.white.withOpacity(0),
),
duration: const Duration(seconds: 3),
child: child,
child: Padding(
padding: const EdgeInsets.only(top: 4.0),
child: child,
),
onEnd: () => initialMessageHighlightComplete = true,
builder: (_, color, child) {
return Container(