-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: App hangs in black screen when adding a leading to a ListView on iOS #2237
Comments
Thank you for the repro! |
APP_ID: 0f2ace62-acfa-455a-b68e-9c644bfce83c I removed a component from the existing code and pushed it without making any other modifications or additions, but the screen remains black and does not progress (only on iOS). |
Felix figured out today that this was a regression from our global dispatch table offset alignment fixes last week. We're not entirely sure why, but reverting the change does resolve the issue, so we'll be releasing a revert as soon as tomorrow. |
We believe this should now be resolved for new releases made with Flutter 3.22.2 after today. |
I don't think this was actually fixed, but we fixed it in #2219 just today. |
App ID: f71308f8-40fc-4db6-8403-e3dfc33683d8
Description
While trying to make a smaller app for scroll issue, I ended up finding another one.
When in a patch, I add a
leading
to aListTile
in aListView
, the app will forever hang in a black screen, there are not logs or errors on the console.Steps To Reproduce
main.dart
with:leading
bellow thetitle
to theListTile
:return ListTile( title: Text('Item $idx'), + leading: Text('A'), );
Expected Behavior
App renders the ListView.
Additional Context
Debug files:
patch-debug.zip
The text was updated successfully, but these errors were encountered: