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
d61d7758
Unverified
Commit
d61d7758
authored
Dec 25, 2020
by
Todd Volkert
Committed by
GitHub
Dec 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment to RenderColoredBox.paint() (#72526)
parent
19a83549
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+4
-0
No files found.
packages/flutter/lib/src/widgets/basic.dart
View file @
d61d7758
...
...
@@ -7683,6 +7683,10 @@ class _RenderColoredBox extends RenderProxyBoxWithHitTestBehavior {
@override
void
paint
(
PaintingContext
context
,
Offset
offset
)
{
// It's tempting to want to optimize out this `drawRect()` call if the
// color is transparent (alpha==0), but doing so would be incorrect. See
// https://github.com/flutter/flutter/pull/72526#issuecomment-749185938 for
// a good description of why.
if
(
size
>
Size
.
zero
)
{
context
.
canvas
.
drawRect
(
offset
&
size
,
Paint
()..
color
=
color
);
}
...
...
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