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
8be6ed58
Commit
8be6ed58
authored
Feb 06, 2016
by
Viktor Lidholt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fitness demo, initial version
parent
7a2c38ab
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
501 additions
and
1 deletion
+501
-1
flutter.yaml
examples/material_gallery/flutter.yaml
+7
-0
fitness_demo.dart
examples/material_gallery/lib/demo/fitness_demo.dart
+491
-0
home.dart
examples/material_gallery/lib/gallery/home.dart
+3
-1
No files found.
examples/material_gallery/flutter.yaml
View file @
8be6ed58
...
...
@@ -20,7 +20,10 @@ assets:
-
packages/flutter_gallery_assets/icon-snow.png
-
packages/flutter_gallery_assets/kangaroo_valley_safari.png
-
packages/flutter_gallery_assets/top_10_australian_beaches.png
-
packages/flutter_gallery_assets/jumpingjack.json
-
packages/flutter_gallery_assets/jumpingjack.png
material-design-icons
:
-
name
:
action/accessibility
-
name
:
action/account_circle
-
name
:
action/alarm
-
name
:
action/android
...
...
@@ -29,6 +32,8 @@ material-design-icons:
-
name
:
action/home
-
name
:
action/hourglass_empty
-
name
:
action/language
-
name
:
av/play_arrow
-
name
:
av/stop
-
name
:
communication/call
-
name
:
communication/email
-
name
:
communication/location_on
...
...
@@ -39,6 +44,8 @@ material-design-icons:
-
name
:
content/create
-
name
:
image/brightness_5
-
name
:
image/brightness_7
-
name
:
image/flash_on
-
name
:
image/timer
-
name
:
navigation/arrow_back
-
name
:
navigation/arrow_drop_down
-
name
:
navigation/arrow_forward
...
...
examples/material_gallery/lib/demo/fitness_demo.dart
0 → 100644
View file @
8be6ed58
This diff is collapsed.
Click to expand it.
examples/material_gallery/lib/gallery/home.dart
View file @
8be6ed58
...
...
@@ -30,6 +30,7 @@ import '../demo/time_picker_demo.dart';
import
'../demo/two_level_list_demo.dart'
;
import
'../demo/typography_demo.dart'
;
import
'../demo/weathers_demo.dart'
;
import
'../demo/fitness_demo.dart'
;
class
GalleryHome
extends
StatefulComponent
{
GalleryHome
({
Key
key
})
:
super
(
key:
key
);
...
...
@@ -65,7 +66,8 @@ class GalleryHomeState extends State<GalleryHome> {
image:
'assets/section_animation.png'
,
colors:
Colors
.
purple
,
demos:
<
GalleryDemo
>[
new
GalleryDemo
(
title:
'Weathers'
,
builder:
()
=>
new
WeathersDemo
())
new
GalleryDemo
(
title:
'Weathers'
,
builder:
()
=>
new
WeathersDemo
()),
new
GalleryDemo
(
title:
'Fitness'
,
builder:
()
=>
new
FitnessDemo
())
]
),
new
GallerySection
(
...
...
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