Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
font_awesome_flutter
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kulya
font_awesome_flutter
Commits
d2a85113
Commit
d2a85113
authored
Jan 03, 2018
by
Brian Egan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Example: Tap icon to pop (for iOS)
parent
ad6cb2c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
main.dart
example/lib/main.dart
+13
-8
No files found.
example/lib/main.dart
View file @
d2a85113
...
...
@@ -56,14 +56,19 @@ class FontAwesomeGalleryHomeState extends State<FontAwesomeGalleryHome> {
context
,
new
MaterialPageRoute
<
Null
>(
builder:
(
BuildContext
context
)
{
return
new
Container
(
color:
Colors
.
white
,
child:
new
SizedBox
.
expand
(
child:
new
Hero
(
tag:
icon
,
child:
new
Icon
(
icon
.
iconData
,
size:
100.0
,
return
new
GestureDetector
(
onTap:
()
{
Navigator
.
of
(
context
).
pop
();
},
child:
new
Container
(
color:
Colors
.
white
,
child:
new
SizedBox
.
expand
(
child:
new
Hero
(
tag:
icon
,
child:
new
Icon
(
icon
.
iconData
,
size:
100.0
,
),
),
),
),
...
...
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