This repository was archived by the owner on Oct 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHomeScreen.kt
More file actions
186 lines (174 loc) · 7.56 KB
/
HomeScreen.kt
File metadata and controls
186 lines (174 loc) · 7.56 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package dev.hyo.martie.screens
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.*
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import androidx.navigation.NavController
import dev.hyo.martie.models.AppColors
import dev.hyo.martie.screens.uis.FeatureCard
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun HomeScreen(navController: NavController) {
Scaffold { paddingValues ->
Column(
modifier = Modifier
.fillMaxSize()
.padding(paddingValues)
.verticalScroll(rememberScrollState())
.background(AppColors.background),
verticalArrangement = Arrangement.spacedBy(20.dp)
) {
Spacer(modifier = Modifier.height(0.dp))
// Header Card
Card(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 16.dp)
.clickable { navController.navigate("all_products") },
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = AppColors.cardBackground),
elevation = CardDefaults.cardElevation(defaultElevation = 2.dp)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(12.dp)
) {
Icon(
Icons.Default.ShoppingBag,
contentDescription = null,
modifier = Modifier.size(48.dp),
tint = AppColors.primary
)
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
Surface(
shape = RoundedCornerShape(4.dp),
color = AppColors.secondary.copy(alpha = 0.2f)
) {
Text(
"Android",
modifier = Modifier.padding(horizontal = 8.dp, vertical = 2.dp),
style = MaterialTheme.typography.labelSmall
)
}
}
}
Text(
"Test in-app purchases and subscription features with Google Play Billing integration.",
style = MaterialTheme.typography.bodyMedium,
color = AppColors.textSecondary
)
}
}
// Feature Grid
LazyVerticalGrid(
columns = GridCells.Fixed(2),
modifier = Modifier
.fillMaxWidth()
.height(400.dp)
.padding(horizontal = 16.dp),
horizontalArrangement = Arrangement.spacedBy(16.dp),
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
item {
FeatureCard(
title = "Purchase\nFlow",
subtitle = "Buy consumables & non-consumables",
icon = Icons.Default.ShoppingCart,
color = AppColors.primary,
onClick = {
navController.navigate("purchase_flow")
}
)
}
item {
FeatureCard(
title = "Subscription\nFlow",
subtitle = "Manage subscriptions",
icon = Icons.Default.Autorenew,
color = AppColors.secondary,
onClick = {
navController.navigate("subscription_flow")
}
)
}
item {
FeatureCard(
title = "Available\nPurchases",
subtitle = "View active & restore",
icon = Icons.Default.Restore,
color = AppColors.success,
onClick = {
navController.navigate("available_purchases")
}
)
}
item {
FeatureCard(
title = "Offer\nCode",
subtitle = "Redeem promo codes",
icon = Icons.Default.LocalOffer,
color = AppColors.warning,
onClick = {
navController.navigate("offer_code")
}
)
}
}
// Testing Notes Card
Card(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 16.dp),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = AppColors.info.copy(alpha = 0.1f))
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Icon(
Icons.Default.Info,
contentDescription = null,
tint = AppColors.info
)
Text(
"Testing Notes",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold
)
}
Text(
"• Use test accounts configured in Google Play Console\n" +
"• Products must be configured in Play Console\n" +
"• App must be uploaded to Play Console (at least internal testing)\n" +
"• Device must be signed in with a test account",
style = MaterialTheme.typography.bodySmall,
color = AppColors.textSecondary
)
}
}
Spacer(modifier = Modifier.height(20.dp))
}
}
}