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
afc0550a
Commit
afc0550a
authored
Sep 02, 2016
by
Hans Muller
Committed by
GitHub
Sep 02, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix circle antialiasing in the animation demo (#5729)
parent
f6f37ef2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
animation_demo.dart
examples/flutter_gallery/lib/demo/animation_demo.dart
+1
-0
scrollable.dart
packages/flutter/lib/src/widgets/scrollable.dart
+2
-2
No files found.
examples/flutter_gallery/lib/demo/animation_demo.dart
View file @
afc0550a
...
...
@@ -74,6 +74,7 @@ class _PointDemoPainter extends CustomPainter {
drawPoint
(
canvas
,
arc
.
center
,
Colors
.
grey
[
400
]);
paint
..
isAntiAlias
=
false
// Work-around for github.com/flutter/flutter/issues/5720
..
color
=
Colors
.
green
[
500
].
withOpacity
(
0.25
)
..
strokeWidth
=
4.0
..
style
=
PaintingStyle
.
stroke
;
...
...
packages/flutter/lib/src/widgets/scrollable.dart
View file @
afc0550a
...
...
@@ -41,8 +41,8 @@ typedef double SnapOffsetCallback(double scrollOffset, Size containerSize);
/// A base class for scrollable widgets.
///
/// Commonly used
subclasses include [ScrollableList], [ScrollableGrid], and
/// [ScrollableViewport].
/// Commonly used
classes that are based on Scrollable include [ScrollableList],
/// [Scrollable
Grid], and [Scrollable
Viewport].
///
/// Widgets that subclass [Scrollable] typically use state objects that subclass
/// [ScrollableState].
...
...
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