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
f46dd406
Commit
f46dd406
authored
Apr 05, 2017
by
Ian Hickson
Committed by
Adam Barth
Apr 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some breadcrumbs to RenderIgnorePointer/RenderAbsorbPointer (#9192)
parent
8469ef03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
proxy_box.dart
packages/flutter/lib/src/rendering/proxy_box.dart
+10
-0
No files found.
packages/flutter/lib/src/rendering/proxy_box.dart
View file @
f46dd406
...
...
@@ -2309,6 +2309,11 @@ class RenderRepaintBoundary extends RenderProxyBox {
/// When [ignoringSemantics] is true, the subtree will be invisible to
/// the semantics layer (and thus e.g. accessibility tools). If
/// [ignoringSemantics] is null, it uses the value of [ignoring].
///
/// See also:
///
/// * [RenderAbsorbPointer], which takes the pointer events but prevents any
/// nodes in the subtree from seeing them.
class
RenderIgnorePointer
extends
RenderProxyBox
{
/// Creates a render object that is invisible to hit testing.
///
...
...
@@ -2492,6 +2497,11 @@ class RenderOffstage extends RenderProxyBox {
/// consumes space during layout and paints its child as usual. It just prevents
/// its children from being the target of located events, because its render
/// object returns true from [hitTest].
///
/// See also:
///
/// * [RenderIgnorePointer], which has the opposite effect: removing the
/// subtree from considering entirely for the purposes of hit testing.
class
RenderAbsorbPointer
extends
RenderProxyBox
{
/// Creates a render object that absorbs pointers during hit testing.
///
...
...
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