Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f7dac616
Commit
f7dac616
authored
Mar 27, 2016
by
Ian Hickson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve _AnimatedEvaluation.toString
...and fix a typo in a setState assert message.
parent
7dc5d5d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
tween.dart
packages/flutter/lib/src/animation/tween.dart
+1
-1
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+1
-1
No files found.
packages/flutter/lib/src/animation/tween.dart
View file @
f7dac616
...
...
@@ -43,7 +43,7 @@ class _AnimatedEvaluation<T> extends Animation<T> with AnimationWithParentMixin<
@override
String
toString
()
{
return
'
$parent
\
u27A9
$_evaluatable
'
;
return
'
$parent
\
u27A9
$_evaluatable
\
u27A9
$value
'
;
}
@override
...
...
packages/flutter/lib/src/widgets/framework.dart
View file @
f7dac616
...
...
@@ -384,7 +384,7 @@ abstract class State<T extends StatefulWidget> {
assert
(()
{
if
(
_debugLifecycleState
==
_StateLifecycle
.
defunct
)
{
throw
new
FlutterError
(
'setState() called after dipose():
$this
\n
'
'setState() called after di
s
pose():
$this
\n
'
'This error happens if you call setState() on State object for a widget that
\n
'
'no longer appears in the widget tree (e.g., whose parent widget no longer
\n
'
'includes the widget in its build). This error can occur when code calls
\n
'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment