fix(chat): краш меню действий над клавиатурой из-за одиночного тикера
_MessageActionsLayerState создавал два AnimationController при SingleTickerProviderStateMixin. Заменён на TickerProviderStateMixin.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user