-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Points History and Rewards tab bar styling + Rewards navigation anima…
…tions (#46) * Created and implemented new CircleIcon component * Transaction card and points history styling * Added total sale to transaction cards * Fixed points earned Airtable language * Fixed text colors to match designs * Rewards tab bar styling * Fixed 'Available' typo, cleaning up * Cleaning up Top Tab heading styling * Made RootStack to open Rewards as a modal * Corrected capitalization of overlines * Fixed direct link to 'Points History' from drawer * Fixed reload bug on closing rewards
- Loading branch information
Showing
15 changed files
with
223 additions
and
270 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FontAwesome5 } from '@expo/vector-icons'; | ||
import React from 'react'; | ||
import { CircleIconContainer } from './BaseComponents'; | ||
|
||
export default class CircleIcon extends React.Component { | ||
render() { | ||
return ( | ||
<CircleIconContainer color={this.props.circleColor}> | ||
<FontAwesome5 | ||
name={this.props.icon} | ||
size={22} | ||
solid | ||
color={this.props.iconColor} | ||
style={{ paddingTop: 1 }} | ||
/> | ||
</CircleIconContainer> | ||
); | ||
} | ||
} |
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
Oops, something went wrong.