fix(chat): краш меню действий над клавиатурой из-за одиночного тикера

_MessageActionsLayerState создавал два AnimationController при
SingleTickerProviderStateMixin. Заменён на TickerProviderStateMixin.
This commit is contained in:
bigtaed-sys
2026-08-15 16:02:26 +07:00
committed by Jganenokk
parent 7f696f4b0d
commit 40f170ca33
@@ -234,7 +234,7 @@ class _MessageActionsLayer extends StatefulWidget {
} }
class _MessageActionsLayerState extends State<_MessageActionsLayer> class _MessageActionsLayerState extends State<_MessageActionsLayer>
with SingleTickerProviderStateMixin { with TickerProviderStateMixin {
late final AnimationController _animController; late final AnimationController _animController;
late final Animation<double> _animation; late final Animation<double> _animation;
late final AnimationController _expandController; late final AnimationController _expandController;