Skip to content
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

testing pull request #37

Open
wants to merge 7 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# movieapp
# movieapp [![Paypal Donate](https://img.shields.io/badge/paypal-donate-green.svg?style=flat)](https://www.paypal.me/junedomingo)
Discover Movies and TV shows


Choose a reason for hiding this comment

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

testing comments

![movieapp-screenshots_big_iphone_](https://cloud.githubusercontent.com/assets/5106887/20606597/f176b3e2-b2ac-11e6-9163-c9e625df7748.png)

### Download APK file
Expand Down Expand Up @@ -59,3 +60,5 @@ Brent Vatne did awesome work to make this run on exponent, checkout his [repo](h

### How to rename react native app?
[react-native-rename](https://github.com/JuneDomingo/react-native-rename) - Rename react-native app with just one command

<a href="https://www.buymeacoffee.com/junedomingo"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" target="_blank"></a>
2 changes: 1 addition & 1 deletion src/modules/movies/tabs/Casts.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Casts = ({ info, getTabHeight }) => {
<View style={styles.container} onLayout={getTabHeight.bind(this, 'casts', computedHeight)}>
{
info.casts.cast.map(item => (
<View key={item.id} style={styles.castContainer}>
<View key={item.cast_id} style={styles.castContainer}>
<Image source={{ uri: `${TMDB_IMG_URL}/w185/${item.profile_path}` }} style={styles.castImage} />
<View style={styles.characterContainer}>
<Text style={styles.characterName}>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/AppIcons.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const icons = {

const iconsMap = {};
const iconsLoaded = new Promise((resolve, reject) => {
new Promise.all(
Promise.all(
Object.keys(icons).map(iconName =>
// IconName--suffix--other-suffix is just the mapping name in iconsMap
Ionicons.getImageSource(
Expand Down