Skip to content

Instantly share code, notes, and snippets.

View ryohlan's full-sized avatar

Ryohlan ryohlan

View GitHub Profile
@ryohlan
ryohlan / MaterialButton.js
Last active March 20, 2018 09:29
マテリアルデザインのRippleエフェクトをReact Nativeで実装してみたよ
// @flow
import React from 'react';
import { View, Animated, TouchableOpacity, PanResponder } from 'react-native';
export type Props = {
children: any,
style: any,
onPress: Function
};
@ryohlan
ryohlan / MaterialTextInput.js
Last active November 15, 2017 13:24
MaterialTextInput
// @flow
import React from 'react';
import { View, TextInput, Animated } from 'react-native';
type Props = {
placeholder: string,
focusColor: string,
unfocusColor: string,
secureTextEntry?: boolean,
textColor: string,