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
b43e3103
Unverified
Commit
b43e3103
authored
Aug 05, 2019
by
Ferhat
Committed by
GitHub
Aug 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update diagnostics to support web platform (#37634)
parent
433436e1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
floating_action_button.dart
...ages/flutter/lib/src/material/floating_action_button.dart
+5
-5
input_decorator.dart
packages/flutter/lib/src/material/input_decorator.dart
+1
-1
view.dart
packages/flutter/lib/src/rendering/view.dart
+1
-1
No files found.
packages/flutter/lib/src/material/floating_action_button.dart
View file @
b43e3103
...
@@ -477,11 +477,11 @@ class FloatingActionButton extends StatelessWidget {
...
@@ -477,11 +477,11 @@ class FloatingActionButton extends StatelessWidget {
properties
.
add
(
ColorProperty
(
'focusColor'
,
focusColor
,
defaultValue:
null
));
properties
.
add
(
ColorProperty
(
'focusColor'
,
focusColor
,
defaultValue:
null
));
properties
.
add
(
ColorProperty
(
'hoverColor'
,
hoverColor
,
defaultValue:
null
));
properties
.
add
(
ColorProperty
(
'hoverColor'
,
hoverColor
,
defaultValue:
null
));
properties
.
add
(
ObjectFlagProperty
<
Object
>(
'heroTag'
,
heroTag
,
ifPresent:
'hero'
));
properties
.
add
(
ObjectFlagProperty
<
Object
>(
'heroTag'
,
heroTag
,
ifPresent:
'hero'
));
properties
.
add
(
D
iagnosticsProperty
<
double
>
(
'elevation'
,
elevation
,
defaultValue:
null
));
properties
.
add
(
D
oubleProperty
(
'elevation'
,
elevation
,
defaultValue:
null
));
properties
.
add
(
D
iagnosticsProperty
<
double
>
(
'focusElevation'
,
focusElevation
,
defaultValue:
null
));
properties
.
add
(
D
oubleProperty
(
'focusElevation'
,
focusElevation
,
defaultValue:
null
));
properties
.
add
(
D
iagnosticsProperty
<
double
>
(
'hoverElevation'
,
hoverElevation
,
defaultValue:
null
));
properties
.
add
(
D
oubleProperty
(
'hoverElevation'
,
hoverElevation
,
defaultValue:
null
));
properties
.
add
(
D
iagnosticsProperty
<
double
>
(
'highlightElevation'
,
highlightElevation
,
defaultValue:
null
));
properties
.
add
(
D
oubleProperty
(
'highlightElevation'
,
highlightElevation
,
defaultValue:
null
));
properties
.
add
(
D
iagnosticsProperty
<
double
>
(
'disabledElevation'
,
disabledElevation
,
defaultValue:
null
));
properties
.
add
(
D
oubleProperty
(
'disabledElevation'
,
disabledElevation
,
defaultValue:
null
));
properties
.
add
(
DiagnosticsProperty
<
ShapeBorder
>(
'shape'
,
shape
,
defaultValue:
null
));
properties
.
add
(
DiagnosticsProperty
<
ShapeBorder
>(
'shape'
,
shape
,
defaultValue:
null
));
properties
.
add
(
DiagnosticsProperty
<
FocusNode
>(
'focusNode'
,
focusNode
,
defaultValue:
null
));
properties
.
add
(
DiagnosticsProperty
<
FocusNode
>(
'focusNode'
,
focusNode
,
defaultValue:
null
));
properties
.
add
(
FlagProperty
(
'isExtended'
,
value:
isExtended
,
ifTrue:
'extended'
));
properties
.
add
(
FlagProperty
(
'isExtended'
,
value:
isExtended
,
ifTrue:
'extended'
));
...
...
packages/flutter/lib/src/material/input_decorator.dart
View file @
b43e3103
...
@@ -3670,7 +3670,7 @@ class InputDecorationTheme extends Diagnosticable {
...
@@ -3670,7 +3670,7 @@ class InputDecorationTheme extends Diagnosticable {
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'helperStyle'
,
helperStyle
,
defaultValue:
defaultTheme
.
helperStyle
));
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'helperStyle'
,
helperStyle
,
defaultValue:
defaultTheme
.
helperStyle
));
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'hintStyle'
,
hintStyle
,
defaultValue:
defaultTheme
.
hintStyle
));
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'hintStyle'
,
hintStyle
,
defaultValue:
defaultTheme
.
hintStyle
));
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'errorStyle'
,
errorStyle
,
defaultValue:
defaultTheme
.
errorStyle
));
properties
.
add
(
DiagnosticsProperty
<
TextStyle
>(
'errorStyle'
,
errorStyle
,
defaultValue:
defaultTheme
.
errorStyle
));
properties
.
add
(
DiagnosticsProperty
<
int
>
(
'errorMaxLines'
,
errorMaxLines
,
defaultValue:
defaultTheme
.
errorMaxLines
));
properties
.
add
(
IntProperty
(
'errorMaxLines'
,
errorMaxLines
,
defaultValue:
defaultTheme
.
errorMaxLines
));
properties
.
add
(
DiagnosticsProperty
<
bool
>(
'hasFloatingPlaceholder'
,
hasFloatingPlaceholder
,
defaultValue:
defaultTheme
.
hasFloatingPlaceholder
));
properties
.
add
(
DiagnosticsProperty
<
bool
>(
'hasFloatingPlaceholder'
,
hasFloatingPlaceholder
,
defaultValue:
defaultTheme
.
hasFloatingPlaceholder
));
properties
.
add
(
DiagnosticsProperty
<
bool
>(
'isDense'
,
isDense
,
defaultValue:
defaultTheme
.
isDense
));
properties
.
add
(
DiagnosticsProperty
<
bool
>(
'isDense'
,
isDense
,
defaultValue:
defaultTheme
.
isDense
));
properties
.
add
(
DiagnosticsProperty
<
EdgeInsetsGeometry
>(
'contentPadding'
,
contentPadding
,
defaultValue:
defaultTheme
.
contentPadding
));
properties
.
add
(
DiagnosticsProperty
<
EdgeInsetsGeometry
>(
'contentPadding'
,
contentPadding
,
defaultValue:
defaultTheme
.
contentPadding
));
...
...
packages/flutter/lib/src/rendering/view.dart
View file @
b43e3103
...
@@ -39,7 +39,7 @@ class ViewConfiguration {
...
@@ -39,7 +39,7 @@ class ViewConfiguration {
}
}
@override
@override
String
toString
()
=>
'
$size
at
${de
vicePixelRatio
}
x'
;
String
toString
()
=>
'
$size
at
${de
bugFormatDouble(devicePixelRatio)
}
x'
;
}
}
/// The root of the render tree.
/// The root of the render tree.
...
...
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