Michael Goderbauer

Results 296 comments of Michael Goderbauer

Looks like the community has already provided a package for this: https://pub.dev/packages/flutter_staggered_grid_view

TextField wraps an EditableText within an IgnorePointer: https://github.com/flutter/flutter/blob/24f483cf25aab43a389a64f15bf9cc1aee130f47/packages/flutter/lib/src/material/text_field.dart#L1026 RenderIgnorePointer has the following TODO: https://github.com/flutter/flutter/blob/24f483cf25aab43a389a64f15bf9cc1aee130f47/packages/flutter/lib/src/rendering/proxy_box.dart#L2975-L2982 Which is probably to blame here. When the textfield is disabled, IgnorePointer is enabled and all...

What's today's behavior when you do that and disable the text field?

/cc @dnfield FYI for image related stuff.

This looks like it has the same source as https://github.com/flutter/flutter/issues/48679, closing as dupe.

@tomgilder You're right, this is a different issue. Reopening...

Re-opening since the fix will get rolled back in https://github.com/flutter/flutter/pull/72102 due to some internal failures at google that need more investigation.

That fix was failing some customer tests that were depending (probably by accident) on the old behavior. I'll need to investigate how to adapt them to the new correct behavior...

AFAICT, the issue is the following case: ```dart import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State...