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
02db6a80
Commit
02db6a80
authored
Jan 10, 2020
by
LongCatIsLooong
Committed by
Flutter GitHub Bot
Jan 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DiagnosticsTreeStyle.oneLine for CupertinoThemeData (#48084)
parent
47bba449
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
colors.dart
packages/flutter/lib/src/cupertino/colors.dart
+1
-1
theme_test.dart
packages/flutter/test/cupertino/theme_test.dart
+12
-1
No files found.
packages/flutter/lib/src/cupertino/colors.dart
View file @
02db6a80
...
...
@@ -1086,7 +1086,7 @@ DiagnosticsProperty<Color> createCupertinoColorProperty(
Color
value
,
{
bool
showName
=
true
,
Object
defaultValue
=
kNoDefaultValue
,
DiagnosticsTreeStyle
style
=
DiagnosticsTreeStyle
.
s
hallow
,
DiagnosticsTreeStyle
style
=
DiagnosticsTreeStyle
.
s
ingleLine
,
DiagnosticLevel
level
=
DiagnosticLevel
.
info
,
})
{
if
(
value
is
CupertinoDynamicColor
)
{
...
...
packages/flutter/test/cupertino/theme_test.dart
View file @
02db6a80
...
...
@@ -190,13 +190,24 @@ void main() {
'navLargeTitleTextStyle'
,
'navActionTextStyle'
,
'pickerTextStyle'
,
'dateTimePickerTextStyle'
'dateTimePickerTextStyle'
,
}
),
isTrue
,
);
});
testWidgets
(
'CupertinoTheme.toStringDeep uses single-line style'
,
(
WidgetTester
tester
)
async
{
// Regression test for https://github.com/flutter/flutter/issues/47651.
expect
(
const
CupertinoTheme
(
data:
CupertinoThemeData
(
primaryColor:
Color
(
0x00000000
)),
child:
SizedBox
(),
).
toStringDeep
().
trimRight
(),
isNot
(
contains
(
'
\n
'
)),
);
});
Brightness
currentBrightness
;
void
colorMatches
(
Color
componentColor
,
CupertinoDynamicColor
expectedDynamicColor
)
{
switch
(
currentBrightness
)
{
...
...
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