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
d6465c47
Unverified
Commit
d6465c47
authored
Jun 22, 2018
by
Jonah Williams
Committed by
GitHub
Jun 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix system chrome colors on gallery and definition in iOS (#18735)
parent
daa16199
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
46 deletions
+55
-46
contacts_demo.dart
examples/flutter_gallery/lib/demo/contacts_demo.dart
+47
-43
home.dart
examples/flutter_gallery/lib/gallery/home.dart
+5
-0
system_chrome.dart
packages/flutter/lib/src/services/system_chrome.dart
+3
-3
No files found.
examples/flutter_gallery/lib/demo/contacts_demo.dart
View file @
d6465c47
...
...
@@ -3,6 +3,7 @@
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
class
_ContactCategory
extends
StatelessWidget
{
const
_ContactCategory
({
Key
key
,
this
.
icon
,
this
.
children
})
:
super
(
key:
key
);
...
...
@@ -182,49 +183,52 @@ class ContactsDemoState extends State<ContactsDemo> {
),
new
SliverList
(
delegate:
new
SliverChildListDelegate
(<
Widget
>[
new
_ContactCategory
(
icon:
Icons
.
call
,
children:
<
Widget
>[
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'Pretend that this opened your SMS application.'
)
));
},
lines:
const
<
String
>[
'(650) 555-1234'
,
'Mobile'
,
],
),
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'A messaging app appears.'
)
));
},
lines:
const
<
String
>[
'(323) 555-6789'
,
'Work'
,
],
),
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'Imagine if you will, a messaging application.'
)
));
},
lines:
const
<
String
>[
'(650) 555-6789'
,
'Home'
,
],
),
],
new
AnnotatedRegion
<
SystemUiOverlayStyle
>(
value:
SystemUiOverlayStyle
.
light
,
child:
new
_ContactCategory
(
icon:
Icons
.
call
,
children:
<
Widget
>[
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'Pretend that this opened your SMS application.'
)
));
},
lines:
const
<
String
>[
'(650) 555-1234'
,
'Mobile'
,
],
),
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'A messaging app appears.'
)
));
},
lines:
const
<
String
>[
'(323) 555-6789'
,
'Work'
,
],
),
new
_ContactItem
(
icon:
Icons
.
message
,
tooltip:
'Send message'
,
onPressed:
()
{
_scaffoldKey
.
currentState
.
showSnackBar
(
const
SnackBar
(
content:
const
Text
(
'Imagine if you will, a messaging application.'
)
));
},
lines:
const
<
String
>[
'(650) 555-6789'
,
'Home'
,
],
),
],
),
),
new
_ContactCategory
(
icon:
Icons
.
contact_mail
,
...
...
examples/flutter_gallery/lib/gallery/home.dart
View file @
d6465c47
...
...
@@ -7,6 +7,7 @@ import 'dart:developer';
import
'dart:math'
as
math
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'backdrop.dart'
;
import
'demos.dart'
;
...
...
@@ -399,6 +400,10 @@ class _GalleryHomeState extends State<GalleryHome> with SingleTickerProviderStat
]
);
}
home
=
new
AnnotatedRegion
<
SystemUiOverlayStyle
>(
child:
home
,
value:
SystemUiOverlayStyle
.
dark
);
return
home
;
}
...
...
packages/flutter/lib/src/services/system_chrome.dart
View file @
d6465c47
...
...
@@ -105,7 +105,7 @@ class SystemUiOverlayStyle {
statusBarColor:
null
,
systemNavigationBarIconBrightness:
Brightness
.
dark
,
statusBarIconBrightness:
Brightness
.
dark
,
statusBarBrightness:
Brightness
.
dark
,
statusBarBrightness:
Brightness
.
light
,
);
/// System overlays should be drawn with a dark color. Intended for
...
...
@@ -116,7 +116,7 @@ class SystemUiOverlayStyle {
statusBarColor:
null
,
systemNavigationBarIconBrightness:
Brightness
.
light
,
statusBarIconBrightness:
Brightness
.
light
,
statusBarBrightness:
Brightness
.
light
,
statusBarBrightness:
Brightness
.
dark
,
);
/// Creates a new [SystemUiOverlayStyle].
...
...
@@ -151,7 +151,7 @@ class SystemUiOverlayStyle {
/// The brightness of top status bar.
///
/// Only honored in iOS
.
/// Only honored in iOS.
final
Brightness
statusBarBrightness
;
/// The brightness of the top status bar icons.
...
...
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