Skip to content

Commit

Permalink
fix App icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Illu committed Nov 24, 2018
1 parent 5feddb0 commit a22371d
Show file tree
Hide file tree
Showing 21 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ $ react-native run-ios

[MobX](https://mobx.js.org/)

## Contribute

If you find a bug, feel free to open an issue or submit a pull request.

New ideas are always welcome, if you have an idea to modify or add a feature, let me know by opening an issue or messaging me on [Twitter](https://twitter.com/MaximeNory).

## Licence

MIT License
Expand Down
18 changes: 9 additions & 9 deletions ios/moonwalk/Images.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,55 +3,55 @@
{
"size": "20x20",
"idiom": "iphone",
"filename": "Icon-40.jpg",
"filename": "Icon-40.png",
"scale": "2x"
},
{
"size": "20x20",
"idiom": "iphone",
"filename": "Icon-60.jpg",
"filename": "Icon-60.png",
"scale": "3x"
},
{
"size": "29x29",
"idiom": "iphone",
"filename": "Icon-58.jpg",
"filename": "Icon-58.png",
"scale": "2x"
},
{
"size": "29x29",
"idiom": "iphone",
"filename": "Icon-87.jpg",
"filename": "Icon-87.png",
"scale": "3x"
},
{
"size": "40x40",
"idiom": "iphone",
"filename": "Icon-80.jpg",
"filename": "Icon-80.png",
"scale": "2x"
},
{
"size": "40x40",
"idiom": "iphone",
"filename": "Icon-121.jpg",
"filename": "Icon-120.png",
"scale": "3x"
},
{
"size": "60x60",
"idiom": "iphone",
"filename": "Icon-120.jpg",
"filename": "Icon-121.png",
"scale": "2x"
},
{
"size": "60x60",
"idiom": "iphone",
"filename": "Icon-180.jpg",
"filename": "Icon-180.png",
"scale": "3x"
},
{
"size": "1024x1024",
"idiom": "ios-marketing",
"filename": "Icon-1024.jpg",
"filename": "Icon-1024.png",
"scale": "1x"
}
],
Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/Components/LaunchCalendarScreen/LaunchCalendarScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class extends Component {
return (
<Wrapper>
<ScreenTitle title="Launch Calendar" />
<ErrorCard onPress={() => this.refreshCalendar()} />
<ErrorCard onPress={this.refreshCalendar} />
</Wrapper>
);
}
Expand All @@ -56,7 +56,7 @@ export default class extends Component {
refreshControl={
<RefreshControl
refreshing={data.state === "loading"}
onRefresh={() => this.refreshCalendar()}
onRefresh={this.refreshCalendar}
tintColor="#fff"
/>
}
Expand Down

0 comments on commit a22371d

Please sign in to comment.