-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feature loading images #182
Conversation
android/settings.gradle
Outdated
======= | ||
include ':react-native-image-to-base64' | ||
project(':react-native-image-to-base64').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-to-base64/android') | ||
>>>>>>> Linked Camera roll through xCode. |
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.
Merge conflicts here
js/scenes/CameraRoll/index.js
Outdated
class CameraRollView extends Component { | ||
constructor(props) { | ||
super(props); | ||
const controls = props.controls; |
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.
Why is this line here?
js/scenes/CameraRoll/index.js
Outdated
CameraRoll.getPhotos({ first: 100 }).done( | ||
(data) => { | ||
const assets = data.edges; | ||
const images = assets.map(asset => asset.node.image); |
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.
suggest data.edges.map
. You don't need the assets
var.
js/scenes/CameraRoll/index.js
Outdated
}); | ||
const mapStateToProps = state => ({ | ||
|
||
}); |
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.
This is empty, delete it.
new MapsPackage() | ||
======= | ||
new ImageToBase64Package() | ||
>>>>>>> Linked Camera roll through xCode. |
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.
Conflicts
Closes #172