Home > Blockchain >  Can someone tell me what does this flutter error means?
Can someone tell me what does this flutter error means?

Time:06-28

while I was running my Flutter app this error appear out of nowhere and I don't really understand it.

The relevant error-causing widget was: FutureBuilder FutureBuilder:file:///home/chayut/flutter-quiz-app/lib/widgets/image/image_container.dart:292:12

Does this mean my error is cause at line 292 and what does the number 12 mean?

Update: Here is the full error log. I don't know what's causing this error.

    ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
The following FormatException was thrown building FutureBuilder<dynamic>(dirty, state:
_FutureBuilderState<dynamic>#d3c0c):
Invalid character (at character 6)
https://photoquiz.weladee.com/612862332b42834de856dc7e.webp?t=2708608270555
     ^
The relevant error-causing widget was:
  FutureBuilder<dynamic>
FutureBuilder:file:///home/chayut/flutter-quiz-app/lib/widgets/image/image_container.dart:292:12

lib/…/image/image_container.dart:292
When the exception was thrown, this was the stack:
packages/flutter/src/widgets/framework.dart 2659:18                           buildScope
packages/flutter/src/widgets/binding.dart 891:9                               drawFrame
packages/flutter/src/rendering/binding.dart 370:5                             [_handlePersistentFrameCallback]
packages/flutter/src/scheduler/binding.dart 1146:15                           [_invokeFrameCallback]
packages/flutter/src/scheduler/binding.dart 1083:9                            handleDrawFrame
packages/flutter/src/scheduler/binding.dart 997:5                             [_handleDrawFrame]
lib/_engine/engine/platform_dispatcher.dart 1090:13                           invoke
lib/_engine/engine/platform_dispatcher.dart 160:5                             invokeOnDrawFrame
lib/_engine/engine/initialization.dart 194:45                                 <fn>
════════════════════════════════════════════════════════════════════════════════════════════════════
Another exception was thrown: A RenderFlex overflowed by 99355 pixels on the bottom.

CodePudding user response:

If you click on the above link in your debug console, it will directly take you to the error causing widget. Try to debug it, else post your code here so that we could help you out

CodePudding user response:

It basically says: line:292 word:12

  • Related