mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-06-12 04:11:11 +00:00
auto-commit for 31f3d9d6-2897-4ecc-8dc4-e03ae3c3965a
This commit is contained in:
@@ -92,10 +92,13 @@ function HomeTab() {
|
||||
<View style={styles.quickActionsContainer}>
|
||||
<Text style={styles.sectionTitle}>Quick Actions</Text>
|
||||
<View style={styles.actionsGrid}>
|
||||
{QUICK_ACTIONS.map((action) => (
|
||||
{QUICK_ACTIONS.map((action, index) => (
|
||||
<TouchableOpacity
|
||||
key={action.id}
|
||||
style={styles.actionCard}
|
||||
style={[styles.actionCard,
|
||||
(index % 4 === 0) && styles.actionCardFirst,
|
||||
(index % 4 === 3) && styles.actionCardLast
|
||||
]}
|
||||
activeOpacity={0.7}
|
||||
>
|
||||
<View style={[styles.actionIcon, { backgroundColor: action.color }]}>
|
||||
|
||||
Reference in New Issue
Block a user