diff --git a/app/login.js b/app/login.js
index fc3aaa8314044b78d41ec3e4c9649d96a0a04427..df8f71cd86dcf16cab1a7214d4143c22bfe61ce5 100644
--- a/app/login.js
+++ b/app/login.js
@@ -56,7 +56,7 @@ export default class LoginView extends React.Component {
 
 	render() {
 		return (
-			<KeyboardAvoidingView style={styles.view} behavior='padding'>
+			<KeyboardAvoidingView style={styles.view}>
 				<TextInput
 					style={styles.input}
 					onChangeText={username => this.setState({ username })}
diff --git a/app/room.js b/app/room.js
index a1514bd6f259f7bc1d968252243967dc55d71036..d1f4c3bdb4343edb4454ea5fbf1f8068903c29f0 100644
--- a/app/room.js
+++ b/app/room.js
@@ -147,7 +147,7 @@ export default class RoomView extends React.Component {
 
 	render() {
 		return (
-			<KeyboardAvoidingView style={styles.container} behavior='padding' keyboardVerticalOffset={64}>
+			<KeyboardAvoidingView style={styles.container}>
 				<FlatList
 					ref={ref => this.listView = ref}
 					style={styles.list}