@@ -80,7 +80,7 @@ List<SkyDemo> demos = [
80
80
name: 'Asteroids' ,
81
81
href: '../../game/main.dart' ,
82
82
bundle: 'game.skyx' ,
83
- description: '2D game using sprite sheets to achieve high performance ' ,
83
+ description: '2D game using sprite sheets' ,
84
84
textTheme: typography.white,
85
85
decoration: new BoxDecoration (
86
86
backgroundImage: new BackgroundImage (
@@ -93,20 +93,20 @@ List<SkyDemo> demos = [
93
93
name: 'Fitness' ,
94
94
href: '../../fitness/lib/main.dart' ,
95
95
bundle: 'fitness.skyx' ,
96
- description: 'Collin should write a nice description ' ,
96
+ description: 'Track progress towards healthy goals ' ,
97
97
textTheme: typography.white,
98
98
decoration: new BoxDecoration (
99
- backgroundColor: const Color ( 0xFF0081C6 )
99
+ backgroundColor: colors. Indigo [ 500 ]
100
100
)
101
101
),
102
102
new SkyDemo (
103
- name: 'Cards ' ,
103
+ name: 'Swipe Away ' ,
104
104
href: '../../widgets/card_collection.dart' ,
105
105
bundle: 'cards.skyx' ,
106
- description: 'Demo of interactive Cards ' ,
106
+ description: 'Infinite list of swipeable cards ' ,
107
107
textTheme: typography.white,
108
108
decoration: new BoxDecoration (
109
- backgroundColor: const Color ( 0xFF0081C6 )
109
+ backgroundColor: colors. RedAccent [ 200 ]
110
110
)
111
111
),
112
112
new SkyDemo (
@@ -127,7 +127,10 @@ List<SkyDemo> demos = [
127
127
href: '../../mine_digger/lib/main.dart' ,
128
128
bundle: 'mine_digger.skyx' ,
129
129
description: 'Clone of the classic Minesweeper game' ,
130
- textTheme: typography.white
130
+ textTheme: typography.white,
131
+ decoration: new BoxDecoration (
132
+ backgroundColor: colors.black
133
+ )
131
134
),
132
135
133
136
// TODO(jackson): This doesn't seem to be working
@@ -143,7 +146,7 @@ class DemoList extends Component {
143
146
decoration: demo.decoration,
144
147
child: new InkWell (
145
148
child: new Container (
146
- margin: const EdgeDims .all ( 24.0 ),
149
+ margin: const EdgeDims .only (top : 24.0 , left : 24.0 ),
147
150
child: new Flex ([
148
151
new Text (demo.name, style: demo.textTheme.title),
149
152
new Flexible (
0 commit comments