File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ linter:
208
208
- type_init_formals
209
209
- type_literal_in_constant_pattern
210
210
# - unawaited_futures # too many false positives, especially with the way AnimationController works
211
- # - unintended_html_in_doc_comment # not yet tested
211
+ # - unintended_html_in_doc_comment # blocked on https://github.com/dart-lang/linter/issues/5065
212
212
- unnecessary_await_in_return
213
213
- unnecessary_brace_in_string_interps
214
214
- unnecessary_breaks
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ class AssetImage extends AssetBundleImageProvider {
252
252
253
253
/// The name used to generate the key to obtain the asset. For local assets
254
254
/// this is [assetName] , and for assets from packages the [assetName] is
255
- /// prefixed ' packages/<package_name>/' .
255
+ /// prefixed ` packages/<package_name>/` .
256
256
String get keyName => package == null ? assetName : 'packages/$package /$assetName ' ;
257
257
258
258
/// The bundle from which the image will be obtained.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import 'basic_types.dart';
13
13
import 'borders.dart' ;
14
14
import 'edge_insets.dart' ;
15
15
16
- /// Defines the relative size and alignment of one < LinearBorder> edge.
16
+ /// Defines the relative size and alignment of one [ LinearBorder] edge.
17
17
///
18
18
/// A [LinearBorder] defines a box outline as zero to four edges, each
19
19
/// of which is rendered as a single line. The width and color of the
Original file line number Diff line number Diff line change @@ -1642,7 +1642,7 @@ class SemanticsProperties extends DiagnosticableTree {
1642
1642
/// This handler is invoked when the user wants to replace the current text in
1643
1643
/// the text field with a new text.
1644
1644
///
1645
- /// Voice access users can trigger this handler by speaking " type <text>" to
1645
+ /// Voice access users can trigger this handler by speaking ` type <text>` to
1646
1646
/// their Android devices.
1647
1647
final SetTextHandler ? onSetText;
1648
1648
@@ -4111,7 +4111,7 @@ class SemanticsConfiguration {
4111
4111
/// This handler is invoked when the user wants to replace the current text in
4112
4112
/// the text field with a new text.
4113
4113
///
4114
- /// Voice access users can trigger this handler by speaking " type <text>" to
4114
+ /// Voice access users can trigger this handler by speaking ` type <text>` to
4115
4115
/// their Android devices.
4116
4116
SetTextHandler ? get onSetText => _onSetText;
4117
4117
SetTextHandler ? _onSetText;
Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ class Dismissible extends StatefulWidget {
136
136
///
137
137
/// The widget cannot be dragged again until the returned future resolves.
138
138
///
139
- /// If the returned Future<bool> completes true, then this widget will be
139
+ /// If the returned ` Future<bool>` completes true, then this widget will be
140
140
/// dismissed, otherwise it will be moved back to its original location.
141
141
///
142
- /// If the returned Future<bool?> completes to false or null the [onResize]
142
+ /// If the returned ` Future<bool?>` completes to false or null the [onResize]
143
143
/// and [onDismissed] callbacks will not run.
144
144
final ConfirmDismissCallback ? confirmDismiss;
145
145
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class ScrollableDetails {
156
156
///
157
157
/// The scroll velocity is controlled by the [velocityScalar] :
158
158
///
159
- /// velocity = < distance of overscroll> * [velocityScalar] .
159
+ /// velocity = ( distance of overscroll) * [velocityScalar] .
160
160
class EdgeDraggingAutoScroller {
161
161
/// Creates a auto scroller that scrolls the [scrollable] .
162
162
EdgeDraggingAutoScroller (
@@ -179,7 +179,7 @@ class EdgeDraggingAutoScroller {
179
179
/// The velocity scalar per pixel over scroll.
180
180
///
181
181
/// It represents how the velocity scale with the over scroll distance. The
182
- /// auto-scroll velocity = < distance of overscroll> * velocityScalar.
182
+ /// auto-scroll velocity = ( distance of overscroll) * velocityScalar.
183
183
/// {@endtemplate}
184
184
final double velocityScalar;
185
185
You can’t perform that action at this time.
0 commit comments