Closed
Description
Is not an urgent issue, as I can see no effect besides that the error is logged. Might indicate other problems though, so thats why I created the issue
Flutter version
Flutter 1.7.8+hotfix.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision b712a172f9 (8 days ago) • 2019-07-09 13:14:38 -0700
Engine • revision 54ad777fd2
Tools • Dart 2.4.0
Golang errors (Optional)
Compilation works, but runtime error (occurs in pairs as far as I can see, thats why I copied both):
[ERROR:c:\b\s\w\ir\k\src\flutter\lib\ui\ui_dart_state.cc(148)] Unhandled Exception: 'package:flutter/src/gestures/converter.da
rt': Failed assertion: line 251 pos 20: 'state.down': is not true.
#0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:40:39)
#1 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:36:5)
#2 PointerEventConverter.expand (package:flutter/src/gestures/converter.dart:251:20)
#3 _SyncIterator.moveNext (dart:core-patch/core_patch.dart:152:12)
#4 ListQueue.addAll (dart:collection/queue.dart:655:25)
#5 _WidgetsFlutterBinding&BindingBase&GestureBinding._handlePointerDataPacket (package:flutter/src/gestures/binding.dart:
84:27)
#6 _rootRunUnary (dart:async/zone.dart:1136:13)
#7 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#8 _CustomZone.runUnaryGuarded (dart:async/zone.dart:931:7)
#9 _invoke1 (dart:ui/hooks.dart:250:10)
#10 _dispatchPointerDataPacket (dart:ui/hooks.dart:159:5)
[ERROR:c:\b\s\w\ir\k\src\flutter\lib\ui\ui_dart_state.cc(148)] Unhandled Exception: 'package:flutter/src/gestures/converter.da
rt': Failed assertion: line 251 pos 20: 'state.down': is not true.
#0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:40:39)
#1 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:36:5)
#2 PointerEventConverter.expand (package:flutter/src/gestures/converter.dart:251:20)
#3 _SyncIterator.moveNext (dart:core-patch/core_patch.dart:152:12)
#4 ListQueue.addAll (dart:collection/queue.dart:655:25)
#5 _WidgetsFlutterBinding&BindingBase&GestureBinding._handlePointerDataPacket (package:flutter/src/gestures/binding.dart:
84:27)
#6 _rootRunUnary (dart:async/zone.dart:1136:13)
#7 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#8 _CustomZone.runUnaryGuarded (dart:async/zone.dart:931:7)
#9 _invoke1 (dart:ui/hooks.dart:250:10)
#10 _dispatchPointerDataPacket (dart:ui/hooks.dart:159:5)
Steps to Reproduce
- My code looks like this
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: FutureWrapper<List<Entry>>(
classifications,
(context, _entry) => ListView(
children: _entry
.map((entry) => ListEntry(entry))
.toList(),
),
key: Key("List of Entries"),
),
);
- I run it with hover run on Windows
- When doubleclick on the bottom edge (to maximize in the vertical direction), this exception occurs