-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders.dart
128 lines (123 loc) · 4.04 KB
/
orders.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'Reusable Card.dart';
import 'constants.dart';
class Orders extends StatelessWidget {
const Orders({Key? key}) : super(key: key);
final String userImage = 'lib/assets/disha.jpg';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
leading: Image.asset(
'lib/assets/Coffee app.png',
height: 100.0,
width: 140.0,
),
automaticallyImplyLeading: false,
actions: [
IconButton(
onPressed: () {},
icon: CircleAvatar(
radius: 30.0,
backgroundColor: Colors.transparent,
foregroundImage: AssetImage(userImage),
),
)
],
),
backgroundColor: kBackgroundColor,
body: Stack(
children: [
Column(
children: [
Text(
'Your Orders',
textAlign: TextAlign.start,
style: TextStyle(fontSize: 30.0, color: Colors.white),
),
kheight,
kheight,
// -------------------- Orders List --------------------------------
Expanded(
child: ListView(
children: [
OrdersU(
orderImage: 'lib/assets/cappuccino on wood .png',
orderName: 'Cappuccino',
orderSubName: 'with Oat Milk',
)
],
),
),
],
),
Positioned(
bottom: 2.0,
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Center(
child: Text(
'Total',
style: kHeadingTextStyle,
),
),
kheight,
Row(
children: [
Icon(
FontAwesomeIcons.rupeeSign,
size: 30.0,
color: kActiveColor,
),
Text(
'9.50',
style: TextStyle(
color: kActiveColor,
fontWeight: FontWeight.w900,
fontSize: 30.0),
),
],
)
],
),
),
],
),
floatingActionButton: Button(
child: Text(
'Place Order',
style: kIngredientHeadingTextStyle,
),
onPressed: () {
showDialog(context: context,
builder: (context) => AlertDialog(
backgroundColor: kCardBackground,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(30.0)),
title: Center(
child: Text(
'Your Order is Placed',
style: kHeadingTextStyle,
),
),
content: Icon(
Icons.emoji_emotions_rounded,
color: kActiveColor,
size: 130.0,
),
actions: [
TextButton(
onPressed: () {
Navigator.pop(context);
},
child: Text('Ok',style : kIngredientHeadingTextStyle))
],
),
);
},
));
}
}