-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscription.dart
171 lines (163 loc) · 5.4 KB
/
subscription.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import 'package:flutter/material.dart';
import 'product.dart'; // Import your ProductPage
class SubscriptionPage extends StatefulWidget {
const SubscriptionPage({Key? key}) : super(key: key);
@override
_SubscriptionPageState createState() => _SubscriptionPageState();
}
class _SubscriptionPageState extends State<SubscriptionPage> {
// Sample subscription data (You can replace this with actual data)
String subscriptionFrequency = 'Weekly'; // Default frequency
bool isActive = true; // Subscription status
void _editSubscription() {
// Implement edit subscription logic (e.g., show a dialog to change frequency)
showDialog(
context: context,
builder: (BuildContext context) {
String? newFrequency = subscriptionFrequency;
return AlertDialog(
title: const Text('Edit Subscription'),
content: DropdownButton<String>(
value: newFrequency,
items: ['None', 'Daily', 'Weekly', 'Monthly', 'Yearly']
.map((String frequency) {
return DropdownMenuItem<String>(
value: frequency,
child: Text(frequency),
);
}).toList(),
onChanged: (String? value) {
setState(() {
newFrequency = value;
});
},
),
actions: [
TextButton(
onPressed: () {
if (newFrequency != null) {
setState(() {
subscriptionFrequency = newFrequency!;
});
Navigator.of(context).pop();
}
},
child: const Text('Save'),
),
TextButton(
onPressed: () => Navigator.of(context).pop(),
child: const Text('Cancel'),
),
],
);
},
);
}
void _cancelSubscription() {
// Implement cancel subscription logic
setState(() {
isActive = false;
});
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Subscription has been cancelled.'),
),
);
}
void _renewSubscription() {
// Implement renew subscription logic
setState(() {
isActive = true; // Renew the subscription
});
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Subscription has been renewed.'),
),
);
}
void _manageProducts() {
// Navigate to the Product Page
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const ProductPage()),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('My Subscription'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Current Subscription Frequency:',
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
Text(
subscriptionFrequency,
style: const TextStyle(fontSize: 16),
),
const SizedBox(height: 20),
ElevatedButton.icon(
onPressed: isActive ? _editSubscription : null,
icon: const Icon(Icons.edit),
label: const Text('Edit Subscription'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue.shade600,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
const SizedBox(height: 10),
ElevatedButton.icon(
onPressed: isActive ? _cancelSubscription : null,
icon: const Icon(Icons.cancel),
label: const Text('Cancel Subscription'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.red.shade600,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
const SizedBox(height: 10),
ElevatedButton.icon(
onPressed: !isActive ? _renewSubscription : null,
icon: const Icon(Icons.refresh),
label: const Text('Renew Subscription'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.green.shade600,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
const SizedBox(height: 20),
ElevatedButton.icon(
onPressed: () => _manageProducts(),
icon: const Icon(Icons.shopping_cart),
label: const Text('Manage Products'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue.shade800,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
const Spacer(),
],
),
),
);
}
}