-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgarden.dart
47 lines (44 loc) · 1.09 KB
/
garden.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import 'package:apple/components/body.dart';
import 'package:apple/ui/constants.dart';
import 'package:flutter/material.dart';
class GardenPage extends StatefulWidget {
@override
_GardenPageState createState() => _GardenPageState();
}
class _GardenPageState extends State<GardenPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
appBar: mAppBar(),
body: Body(),
);
}
AppBar mAppBar() {
return AppBar(
elevation: 0.0,
backgroundColor: Colors.white,
leading: IconButton(
icon: Icon(
Icons.arrow_back_rounded,
color: cTextColor,
),
onPressed: () {}),
actions: [
IconButton(
icon: Icon(
Icons.search_rounded,
color: cTextColor,
),
onPressed: () {}),
IconButton(
icon: Icon(
Icons.shopping_cart_rounded,
color: cTextColor,
),
onPressed: () {}),
SizedBox(width: cPadding / 2),
],
);
}
}