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
918100f8
Unverified
Commit
918100f8
authored
Jan 07, 2021
by
Michael Goderbauer
Committed by
GitHub
Jan 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate missed sample code to NNBD (#73509)
parent
0e684d02
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
26 deletions
+1
-26
foundation.dart
packages/flutter/lib/foundation.dart
+0
-15
date_picker_deprecated.dart
...ages/flutter/lib/src/material/date_picker_deprecated.dart
+0
-5
nested_scroll_view.dart
packages/flutter/lib/src/widgets/nested_scroll_view.dart
+0
-4
scroll_controller.dart
packages/flutter/lib/src/widgets/scroll_controller.dart
+1
-2
No files found.
packages/flutter/lib/foundation.dart
View file @
918100f8
...
@@ -19,21 +19,6 @@ export 'package:meta/meta.dart' show
...
@@ -19,21 +19,6 @@ export 'package:meta/meta.dart' show
required
,
required
,
visibleForTesting
;
visibleForTesting
;
// Examples can assume:
// // @dart = 2.9
// String _name;
// bool _first;
// bool _lights;
// bool _visible;
// bool inherit;
// int columns;
// int rows;
// class Cat { }
// double _volume;
// dynamic _calculation;
// dynamic _last;
// dynamic _selection;
export
'src/foundation/annotations.dart'
;
export
'src/foundation/annotations.dart'
;
export
'src/foundation/assertions.dart'
;
export
'src/foundation/assertions.dart'
;
export
'src/foundation/basic_types.dart'
;
export
'src/foundation/basic_types.dart'
;
...
...
packages/flutter/lib/src/material/date_picker_deprecated.dart
View file @
918100f8
...
@@ -21,11 +21,6 @@ import 'theme.dart';
...
@@ -21,11 +21,6 @@ import 'theme.dart';
// CalendarDatePicker (if needed, as showDatePicker has already been migrated
// CalendarDatePicker (if needed, as showDatePicker has already been migrated
// and it is what most apps would have used).
// and it is what most apps would have used).
// Examples can assume:
// // @dart = 2.9
// BuildContext context;
const
Duration
_kMonthScrollDuration
=
Duration
(
milliseconds:
200
);
const
Duration
_kMonthScrollDuration
=
Duration
(
milliseconds:
200
);
const
double
_kDayPickerRowHeight
=
42.0
;
const
double
_kDayPickerRowHeight
=
42.0
;
const
int
_kMaxDayPickerRowCount
=
6
;
// A 31 day month that starts on Saturday.
const
int
_kMaxDayPickerRowCount
=
6
;
// A 31 day month that starts on Saturday.
...
...
packages/flutter/lib/src/widgets/nested_scroll_view.dart
View file @
918100f8
...
@@ -22,10 +22,6 @@ import 'scroll_view.dart';
...
@@ -22,10 +22,6 @@ import 'scroll_view.dart';
import
'sliver_fill.dart'
;
import
'sliver_fill.dart'
;
import
'viewport.dart'
;
import
'viewport.dart'
;
// Examples can assume:
// // @dart = 2.9
// List<String> _tabs;
/// Signature used by [NestedScrollView] for building its header.
/// Signature used by [NestedScrollView] for building its header.
///
///
/// The `innerBoxIsScrolled` argument is typically used to control the
/// The `innerBoxIsScrolled` argument is typically used to control the
...
...
packages/flutter/lib/src/widgets/scroll_controller.dart
View file @
918100f8
...
@@ -275,8 +275,7 @@ class ScrollController extends ChangeNotifier {
...
@@ -275,8 +275,7 @@ class ScrollController extends ChangeNotifier {
}
}
// Examples can assume:
// Examples can assume:
// // @dart = 2.9
// TrackingScrollController? _trackingScrollController;
// TrackingScrollController _trackingScrollController;
/// A [ScrollController] whose [initialScrollOffset] tracks its most recently
/// A [ScrollController] whose [initialScrollOffset] tracks its most recently
/// updated [ScrollPosition].
/// updated [ScrollPosition].
...
...
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