Skip to content

Comments

Add wallet list#547

Closed
aneepal55 wants to merge 6 commits intoGreenstand:mainfrom
aneepal55:add_wallet_list
Closed

Add wallet list#547
aneepal55 wants to merge 6 commits intoGreenstand:mainfrom
aneepal55:add_wallet_list

Conversation

@aneepal55
Copy link
Contributor

Description

Please provide a clear and concise description of the changes made, including
the purpose and context.

Fixes: # (issue number)
or
Resolves: #362


Changes Made

  • Changes in apps folder (specify the app and briefly describe the
    changes):

    • Web
    • Native
  • Changes in packages folder (specify the package and briefly describe
    the changes):

    • Core

Type of Change

  • 🐛 Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • 💥 Breaking change (fix or feature that would cause existing
    functionality to not work as expected)
  • 📝 Documentation update (changes)

Screenshots

Before After
"IMG_7395" "IMG_7396"

How Has This Been Tested?

  • Cypress integration
  • Cypress component tests
  • Jest unit tests

Checklist:

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules

Additional Comments

(Optional) Add any additional comments or notes for reviewers here.

Comment on lines 20 to 30

<View style={styles.container}>
<View style={styles.createWalletSection}>
<TouchableOpacity style={styles.createWalletButton} onPress={handleCreateWallet}>
<Text style={styles.plusIcon}>+</Text>
<Text style={styles.createWalletText}>CREATE WALLET</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.infoIcon} onPress={handleInfoPress}>
<Text style={styles.infoIconText}>i</Text>
</TouchableOpacity>
</View>
Copy link
Collaborator

@pierrelstan pierrelstan Sep 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aneepal55 Please remove this part from the PR.

@aneepal55
Copy link
Contributor Author

@pierrelstan hello, i made the proposed changes please take a look at it.

@pierrelstan pierrelstan self-requested a review October 1, 2025 14:47
<Text style={styles.walletsTitle}>Your wallets</Text>

<View style={styles.walletsContainer}>
<TouchableOpacity style={styles.walletItem}>
Copy link
Collaborator

@pierrelstan pierrelstan Oct 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace TouchableOpacity with Link for navigation — it’s cleaner and aligns better with Expo Router’s declarative routing.

Comment on lines 25 to 44
<View style={styles.walletInfo}>
<Text style={styles.walletName}>Wallet 2</Text>
<Text style={styles.walletDate}>May 22, 2024</Text>
</View>
<View style={styles.walletRight}>
<Text style={styles.walletAmount}>1000</Text>
<Text style={styles.chevron}>›</Text>
</View>
</TouchableOpacity>

<View style={styles.separator} />

<TouchableOpacity style={styles.walletItem}>
<View style={styles.walletInfo}>
<Text style={styles.walletName}>Wallet 1</Text>
<Text style={styles.walletDate}>May 16, 2024</Text>
</View>
<View style={styles.walletRight}>
<Text style={styles.walletAmount}>3455</Text>
<Text style={styles.chevron}>›</Text>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Abstract the wallet list to be data-driven rather than static.

@aneepal55
Copy link
Contributor Author

@pierrelstan i made the requested changes, please take a look at it

@aneepal55 aneepal55 requested a review from pierrelstan October 11, 2025 15:36
This was referenced Oct 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Your wallets component

2 participants