Skip to content

Instantly share code, notes, and snippets.

View aymericbouzy's full-sized avatar

aymeric bouzy aymericbouzy

  • Pigment
  • Nancy, France
View GitHub Profile
try {
thisMightFail();
} catch(error) {
handleError(error);
}
thisWillAlwaysRun();
try {
thisMightFail();
} catch(error) {
handleError(error);
} finally {
thisWillAlwaysRun();
}
@aymericbouzy
aymericbouzy / app.js
Last active March 31, 2016 20:35
react-native-router-flux android bug report
import React, {
ListView,
Text,
TouchableWithoutFeedback,
View,
} from 'react-native'
import {Actions, Scene, Router} from 'react-native-router-flux'
let App = React.createClass({
render: function() {