|
@@ -80,6 +80,7 @@ class _PageState extends State<ConsumePage> with InjectApi {
|
|
|
child: Container(
|
|
|
width: 240.0,
|
|
|
height: headerHeight,
|
|
|
+ padding: EdgeInsets.only(top: 16.0),
|
|
|
child: Align(
|
|
|
alignment: Alignment.center,
|
|
|
child: CustomPaint(
|
|
@@ -96,6 +97,7 @@ class _PageState extends State<ConsumePage> with InjectApi {
|
|
|
),
|
|
|
Row(
|
|
|
children: <Widget>[
|
|
|
+ Text(" ", style: Theme.of(context).textTheme.subtitle2),
|
|
|
ValueListenableBuilder(
|
|
|
builder: (BuildContext context, value, Widget child) => FutureBuilder(
|
|
|
future: createFutureType(0, _valueNotifierNow.value),
|
|
@@ -147,7 +149,7 @@ class _PageState extends State<ConsumePage> with InjectApi {
|
|
|
Text("${value.month}.${value.day}", style: Theme.of(context).textTheme.subtitle1),
|
|
|
),
|
|
|
SizedBox(
|
|
|
- width: 12.0,
|
|
|
+ width: 6.0,
|
|
|
),
|
|
|
Image.asset("lib/assets/img/setgoals_icon_date.png"),
|
|
|
],
|
|
@@ -159,7 +161,6 @@ class _PageState extends State<ConsumePage> with InjectApi {
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
),
|
|
|
),
|
|
|
- margin: EdgeInsets.only(top: 16.0),
|
|
|
),
|
|
|
),
|
|
|
),
|