From 2354fdc30914be6213ac883abf43528763fcfce1 Mon Sep 17 00:00:00 2001 From: Matt Boetger Date: Thu, 26 Feb 2026 14:23:39 -0800 Subject: [PATCH] axisAlignment is deprecated in beta causing PRs to fail checks (#2811) axisAlignment has been deprecated (currently deprecated in beta). This causes sample PRs to fail. See: https://github.com/flutter/samples/pull/2809 ## Pre-launch Checklist - [X] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [X] I signed the [CLA]. - [X] I read the [Contributors Guide]. - [X] I have added sample code updates to the [changelog]. - [X] I updated/added relevant documentation (doc comments with `///`). --- animations/lib/src/misc/animated_list.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/animations/lib/src/misc/animated_list.dart b/animations/lib/src/misc/animated_list.dart index 6e774d990..0144e6f71 100644 --- a/animations/lib/src/misc/animated_list.dart +++ b/animations/lib/src/misc/animated_list.dart @@ -49,6 +49,7 @@ class _AnimatedListDemoState extends State { parent: animation, curve: const Interval(0.0, 1.0), ), + // ignore: deprecated_member_use axisAlignment: 0.0, child: _buildItem(user), ),