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
db8d6357
Unverified
Commit
db8d6357
authored
Aug 16, 2018
by
xster
Committed by
GitHub
Aug 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make overflow dots on iOS horizontal in gallery (#20702)
parent
e1534b8e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
4 deletions
+20
-4
bottom_app_bar_demo.dart
...lutter_gallery/lib/demo/material/bottom_app_bar_demo.dart
+5
-1
list_demo.dart
examples/flutter_gallery/lib/demo/material/list_demo.dart
+5
-1
reorderable_list_demo.dart
...tter_gallery/lib/demo/material/reorderable_list_demo.dart
+5
-1
search_demo.dart
examples/flutter_gallery/lib/demo/material/search_demo.dart
+5
-1
No files found.
examples/flutter_gallery/lib/demo/material/bottom_app_bar_demo.dart
View file @
db8d6357
...
...
@@ -372,7 +372,11 @@ class _DemoBottomAppBar extends StatelessWidget {
},
),
new
IconButton
(
icon:
const
Icon
(
Icons
.
more_vert
),
icon:
new
Icon
(
Theme
.
of
(
context
).
platform
==
TargetPlatform
.
iOS
?
Icons
.
more_horiz
:
Icons
.
more_vert
,
),
onPressed:
()
{
Scaffold
.
of
(
context
).
showSnackBar
(
const
SnackBar
(
content:
Text
(
'This is a dummy menu action.'
)),
...
...
examples/flutter_gallery/lib/demo/material/list_demo.dart
View file @
db8d6357
...
...
@@ -227,7 +227,11 @@ class _ListDemoState extends State<ListDemo> {
},
),
new
IconButton
(
icon:
const
Icon
(
Icons
.
more_vert
),
icon:
new
Icon
(
Theme
.
of
(
context
).
platform
==
TargetPlatform
.
iOS
?
Icons
.
more_horiz
:
Icons
.
more_vert
,
),
tooltip:
'Show menu'
,
onPressed:
_bottomSheet
==
null
?
_showConfigurationSheet
:
null
,
),
...
...
examples/flutter_gallery/lib/demo/material/reorderable_list_demo.dart
View file @
db8d6357
...
...
@@ -168,7 +168,11 @@ class _ListDemoState extends State<ReorderableListDemo> {
},
),
new
IconButton
(
icon:
const
Icon
(
Icons
.
more_vert
),
icon:
new
Icon
(
Theme
.
of
(
context
).
platform
==
TargetPlatform
.
iOS
?
Icons
.
more_horiz
:
Icons
.
more_vert
,
),
tooltip:
'Show menu'
,
onPressed:
_bottomSheet
==
null
?
_showConfigurationSheet
:
null
,
),
...
...
examples/flutter_gallery/lib/demo/material/search_demo.dart
View file @
db8d6357
...
...
@@ -52,7 +52,11 @@ class _SearchDemoState extends State<SearchDemo> {
),
new
IconButton
(
tooltip:
'More (not implemented)'
,
icon:
const
Icon
(
Icons
.
more_vert
),
icon:
new
Icon
(
Theme
.
of
(
context
).
platform
==
TargetPlatform
.
iOS
?
Icons
.
more_horiz
:
Icons
.
more_vert
,
),
onPressed:
()
{},
),
],
...
...
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