Skip to content

Commit ba8ae0c

Browse files
Tian Lun Leetianlunlee
Tian Lun Lee
authored andcommitted
[103] Added spaces at the start of TODOs
1 parent 9cc47bf commit ba8ae0c

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

mdc_100_series/lib/app.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ShrineApp extends StatelessWidget {
2525
home: HomePage(),
2626
initialRoute: '/login',
2727
onGenerateRoute: _getRoute,
28-
//TODO: Add a theme (103)
28+
// TODO: Add a theme (103)
2929
);
3030
}
3131

@@ -42,5 +42,5 @@ class ShrineApp extends StatelessWidget {
4242
}
4343
}
4444

45-
//TODO: Build a Shrine Theme (103)
46-
//TODO: Build a Shrine Text Theme (103)
45+
// TODO: Build a Shrine Theme (103)
46+
// TODO: Build a Shrine Text Theme (103)

mdc_100_series/lib/home.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ class HomePage extends StatelessWidget {
3333

3434
return products.map((product) {
3535
return Card(
36-
//TODO: Adjust card heights (103)
36+
// TODO: Adjust card heights (103)
3737
child: Column(
38-
//TODO: Center items on the card (103)
38+
// TODO: Center items on the card (103)
3939
crossAxisAlignment: CrossAxisAlignment.start,
4040
children: <Widget>[
4141
AspectRatio(
@@ -50,9 +50,9 @@ class HomePage extends StatelessWidget {
5050
child: Padding(
5151
padding: EdgeInsets.fromLTRB(16.0, 12.0, 16.0, 8.0),
5252
child: Column(
53-
//TODO: Align labels to the bottom and center (103)
53+
// TODO: Align labels to the bottom and center (103)
5454
crossAxisAlignment: CrossAxisAlignment.start,
55-
//TODO: Change innermost Column
55+
// TODO: Change innermost Column
5656
children: <Widget>[
5757
// TODO(larche): Make headline6 when available
5858
Text(

mdc_100_series/lib/login.dart

+7-7
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class _LoginPageState extends State<LoginPage> {
3939
],
4040
),
4141
SizedBox(height: 120.0),
42-
//TODO: Wrap Username with PrimaryColorOverride (103)
43-
//TODO: Remove filled: true values (103)
42+
// TODO: Wrap Username with PrimaryColorOverride (103)
43+
// TODO: Remove filled: true values (103)
4444
TextField(
4545
controller: _usernameController,
4646
decoration: InputDecoration(
@@ -49,7 +49,7 @@ class _LoginPageState extends State<LoginPage> {
4949
),
5050
),
5151
SizedBox(height: 12.0),
52-
//TODO: Wrap Password with PrimaryColorOverride (103)
52+
// TODO: Wrap Password with PrimaryColorOverride (103)
5353
TextField(
5454
controller: _passwordController,
5555
decoration: InputDecoration(
@@ -60,16 +60,16 @@ class _LoginPageState extends State<LoginPage> {
6060
),
6161
ButtonBar(
6262
children: <Widget>[
63-
//TODO: Add a beveled rectangular border to CANCEL (103)
63+
// TODO: Add a beveled rectangular border to CANCEL (103)
6464
FlatButton(
6565
child: Text('CANCEL'),
6666
onPressed: () {
6767
_usernameController.clear();
6868
_passwordController.clear();
6969
},
7070
),
71-
//TODO: Add an elevation to the NEXT button (103)
72-
//TODO: Add a beveled rectangular border to NEXT (103)
71+
// TODO: Add an elevation to the NEXT button (103)
72+
// TODO: Add a beveled rectangular border to NEXT (103)
7373
RaisedButton(
7474
child: Text('NEXT'),
7575
onPressed: () {
@@ -85,4 +85,4 @@ class _LoginPageState extends State<LoginPage> {
8585
}
8686
}
8787

88-
//TODO: Add PrimaryColorOverride (103)
88+
// TODO: Add PrimaryColorOverride (103)

0 commit comments

Comments
 (0)