-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Wallet] Implement most of verification loading screen and skip modal #1566
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
a183511
Add navigation fix for hot reloading
jmrossy d542a45
[Wallet] Add new carousel component
jmrossy 0ccbbf7
Update geth hash
jmrossy 587bf86
Merge branch 'master' into rossy/wa-hot-reloading
jmrossy 1faf354
Merge branch 'rossy/wa-hot-reloading' into rossy/wa-carousel
jmrossy ca440c1
Set up new screens for verification
jmrossy 5b568eb
Update yarn lock
jmrossy 41d0817
Merge branch 'master' into rossy/wa-hot-reloading
jmrossy c53d33b
Merge branch 'rossy/wa-hot-reloading' into rossy/wa-carousel
jmrossy 06a3f06
Merge branch 'rossy/wa-carousel' into rossy/wa-new-verification-screens
jmrossy 412df2f
Add test files
jmrossy 48a3c3c
Merge branch 'master' into rossy/wa-carousel
jmrossy 3b77890
Fix tests
jmrossy 727e26b
Merge branch 'rossy/wa-carousel' into rossy/wa-new-verification-screens
jmrossy 175d39f
Add snapshots
jmrossy dd72001
Implement new Link styles and break out text buttons into a separate …
jmrossy ce5c774
Undo change to nav wrapper
jmrossy ef95886
Add Lottie package and new loading animation
jmrossy 592a5de
Fix tests and leftover bit in Account
jmrossy 6783746
Merge branch 'rossy/wa-ver-education' into rossy/wa-ver-loading
jmrossy d6851bb
Merge branch 'master' into rossy/wa-new-verification-screens
jmrossy e07e15b
Merge branch 'rossy/wa-new-verification-screens' into rossy/wa-ver-ed…
jmrossy a1b5154
Merge branch 'rossy/wa-ver-education' into rossy/wa-ver-loading
jmrossy 96f50c3
Merge branch 'master' into rossy/wa-ver-education
jmrossy 5028411
Add missing spanish strings
jmrossy a8f8b3b
Merge branch 'rossy/wa-ver-education' into rossy/wa-ver-loading
jmrossy 5cbf7d4
Merge branch 'master' into rossy/wa-ver-loading
jmrossy 2b51dc4
Fix tests
jmrossy 4da6e23
Address feedback about carousel icon type
jmrossy 5ac6055
Merge branch 'master' into rossy/wa-ver-loading
jmrossy e29494d
Merge branch 'master' into rossy/wa-ver-loading
jmrossy c23439a
Fix pods lock
jmrossy 68086d5
Merge branch 'master' into rossy/wa-ver-loading
jmrossy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import LottieView from 'lottie-react-native' | ||
import React from 'react' | ||
|
||
interface Props { | ||
width?: number | ||
} | ||
|
||
export default class LoadingSpinner extends React.PureComponent<Props> { | ||
static defaultProps = { | ||
width: 40, | ||
} | ||
|
||
render() { | ||
return ( | ||
<LottieView | ||
source={require('./loadingSpinnerGreen.json')} | ||
autoPlay={true} | ||
loop={true} | ||
style={{ width: this.props.width }} | ||
/> | ||
) | ||
} | ||
} |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍