ref.watch error

kbs·2023년 3월 7일
0

Unhandled Exception: setState() or markNeedsBuild() called during build.
This ProfileScreen widget cannot be marked as needing to build because the framework is already in the process of building widgets. A widget can be marked as needing to be built during the build phase only if one of its ancestors is currently building. This exception is allowed because the framework builds parent widgets before children, which means a dirty descendant will always be built. Otherwise, the framework might not visit this widget during this build phase.
The widget on which setState() or markNeedsBuild() was called was:
ProfileScreen
The widget which was currently being built when the offending call was made was:
FutureBuilder<UserModelBase?>
#0 Element.markNeedsBuild. (package:flutter/src/widgets/framework.dart:4549:11)
#1 Element.markNeedsBuild (package:flutter/src/widgets/framework.dart:4564:6)
#2 ConsumerStatefulElement.watch.<anonymous <…>

0개의 댓글