Introduces several user experience enhancements, focusing on improved feedback and interactivity across the app#544
Merged
Merged
Conversation
…tions - Add AnimatedNumber component for smooth balance counting transitions - Add SkeletonLoader with shimmer effect replacing plain loading text - Add AnimatedPressable with spring animations and gesture handler - Add Toast notification system replacing Alert.alert for copy/share - Enhance WalletCard with 3D tilt, parallax decorative circles, perspective transforms, and wallet type pill badges - Enhance TransactionItem with staggered FadeInDown entrance animation, icon scale animation, relative time formatting, and directional slide feedback on press - Add haptic feedback throughout: pull-to-refresh, period selector, send/receive buttons, fee presets, send max, transaction success/error, address generation, balance toggle, and settings navigation - Upgrade tab animation with combined opacity fade + spring translateY for a premium screen transition feel - Integrate ToastProvider at root layout for app-wide toast support https://claude.ai/code/session_01U5QjrPEbaJHcb1gFwxU6Hf
Add haptic feedback, skeleton loaders, and toast notifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several user experience enhancements, focusing on improved feedback and interactivity across the app. The main changes include the addition of animated and haptic feedback components, the replacement of native alerts with a custom toast system, and the use of skeleton loaders for a better loading experience. There are also minor improvements for code consistency and user engagement.
User Feedback and Interactivity Improvements:
AnimatedPressablecomponent to provide consistent spring animation and haptic feedback for pressable elements throughout the app. This centralizes and standardizes touch feedback.AnimatedNumbercomponent for smoothly animating numeric value changes, enhancing the visual experience for balance and price displays.HapticServiceinto key user interactions (e.g., refreshing data, toggling settings, sending/receiving actions, fee presets, max send, transaction review, and settings navigation) to provide tactile feedback and improve perceived responsiveness. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]Toast Notification System:
Alertpopups for copy/share actions with a customtoastnotification system for more modern, less disruptive feedback. This includes error, success, and info toasts for copy/share actions and is now available app-wide via the newToastProvider. [1] [2] [3] [4]Loading State Enhancements:
HomeScreenSkeleton) instead of static loading text, improving user perception during data fetches. [1] [2]Minor Improvements and Consistency:
indexprop toTransactionItemfor improved rendering and key management.activeOpacityfor send/receive buttons to provide visual feedback on press. [1] [2]These changes collectively result in a more polished, interactive, and user-friendly application.