-
Notifications
You must be signed in to change notification settings - Fork 42
[MOB-10034] Example App: commerce #592
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
Merged
lposen
merged 13 commits into
2.0.0-alpha/master
from
2.0.0-alpha/MOB-10034-add-commerce-section
Nov 26, 2024
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4bdb860
Add Commerce route and update navigation: define Commerce route in co…
lposen f839149
Add Commerce component and route: implement Commerce component with p…
lposen dba498f
Removed iterable logo from images
lposen 9fac466
Remove Gemfile.lock and update README with troubleshooting steps for …
lposen 41d514b
Fix typo in README: add missing period to installation instruction
lposen 164dcbe
Add Ruby version check to README: include instructions for verifying …
lposen eca6d62
Update Gradle and Android Gradle Plugin versions: upgrade to Gradle 8…
lposen 7e27af3
Add troubleshooting steps for Android SDK location errors in README
lposen 4aef54c
Add environment setup instructions to README: include example PATH co…
lposen 90197c3
Merge branch '2.0.0-alpha/MOB-10033-add-inbox' into 2.0.0-alpha/MOB-1…
lposen 04ce363
Merge branch '2.0.0-alpha/MOB-10033-add-inbox' into 2.0.0-alpha/MOB-1…
lposen 6a55dda
Merge branch '2.0.0-alpha/MOB-10033-add-inbox' into 2.0.0-alpha/MOB-1…
lposen a63b342
Merge branch '2.0.0-alpha/master' into 2.0.0-alpha/MOB-10034-add-comm…
lposen 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 was deleted.
Oops, something went wrong.
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| import { Route } from '../../constants'; | ||
|
|
||
| export const routeIcon = { | ||
| [Route.Commerce]: 'cash-outline', | ||
| [Route.Inbox]: 'mail-outline', | ||
| [Route.User]: 'person-outline', | ||
| }; |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| export type CommerceItem = { | ||
| id: string; | ||
| name: string; | ||
| icon: any; | ||
| subtitle: string; | ||
| price: number; | ||
| }; | ||
|
|
||
| export const items: CommerceItem[] = [ | ||
| { | ||
| id: 'black', | ||
| name: 'Black Coffee', | ||
| icon: require('./img/black-coffee.png'), | ||
| subtitle: 'Maximize health benefits', | ||
| price: 2.53, | ||
| }, | ||
| { | ||
| id: 'cappuccino', | ||
| name: 'Cappuccino', | ||
| icon: require('./img/cappuccino.png'), | ||
| subtitle: 'Tasty and creamy', | ||
| price: 3.56, | ||
| }, | ||
| { | ||
| id: 'mocha', | ||
| name: 'Mocha', | ||
| icon: require('./img/mocha.png'), | ||
| subtitle: 'Indulge yourself', | ||
| price: 4.98, | ||
| }, | ||
| ]; |
Oops, something went wrong.
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.
Odd my computer has 2.6.10 running but the app is working