1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-21 20:08:16 +00:00

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 `///`).
This commit is contained in:
Matt Boetger
2026-02-26 14:23:39 -08:00
committed by GitHub
parent e61e3a96ad
commit 2354fdc309

View File

@@ -49,6 +49,7 @@ class _AnimatedListDemoState extends State<AnimatedListDemo> {
parent: animation,
curve: const Interval(0.0, 1.0),
),
// ignore: deprecated_member_use
axisAlignment: 0.0,
child: _buildItem(user),
),