Skip to content

Instantly share code, notes, and snippets.

@tenwy
tenwy / image.js
Last active February 12, 2018 13:19
Upload image to Skygear in React Native
let message = this.state.text;
const {
imgResponse
} = this.state;
const imageAsset = new skygear.Asset({
name: 'image.jpg',
file: {
uri: imgResponse.uri,
@tenwy
tenwy / index.css
Last active January 16, 2018 07:32
Sample webpage
h1, h2 {
color: #333;
}
h1::before {
content: "<3 ";
color: #f00;
}