Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Building Stellar User Experiences with React Na...
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Alexander Kotliarskyi
July 12, 2017
Programming
1.1k
2
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Building Stellar User Experiences with React Native
Alexander Kotliarskyi
July 12, 2017
More Decks by Alexander Kotliarskyi
See All by Alexander Kotliarskyi
React Native: Under the Hood
frantic
31
22k
React Native Tutorial - NYC'15
frantic
5
1.5k
Other Decks in Programming
See All in Programming
壊れたパーサから始める関数型設計と構成的なパーサ #fp_matsuri
raiga0310
2
230
1B+ /day規模のログを管理する技術
broadleaf
0
140
【SRE NEXT 2026 Lunch Session】一人目専任SREの立ち上げを加速する ― AIと進めたオンボーディングで2分を0.04秒にした話
pkshadeck
PRO
0
2.7k
AI時代の仕事技芸論〜ソフトウェア開発で「遊ぶように働く」職人的熟達のすすめ(スクフェス仙台 2026バージョン)
kuranuki
0
650
気圧・高度・GPSを記録&可視化するアプリ「Koudo」を作った話
hjmkth
1
360
Apache Hive: そしてCloud Native Lakehouseへ
okumin
1
130
Claude Team Plan導入・ガイド
tk3fftk
0
210
5分で問診!Composer セキュリティ健康診断
codmoninc
0
280
エンジニア向け会社紹介/Findy Company Profile
findyinc
6
360k
地域 SRE コミュニティ最前線 - ホンマでっかSRE勉強会
tk3fftk
0
240
20260623_Loop Engineeringで自分の分身の問い合わせBotを作る
ryugen04
0
220
音楽のための関数型プログラミング言語mimiumにおける多段階計算の活用
tomoyanonymous
1
330
Featured
See All Featured
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
10k
The Cult of Friendly URLs
andyhume
79
6.9k
jQuery: Nuts, Bolts and Bling
dougneiner
66
8.5k
Reality Check: Gamification 10 Years Later
codingconduct
0
2.2k
Embracing the Ebb and Flow
colly
88
5.1k
Building Flexible Design Systems
yeseniaperezcruz
330
40k
Side Projects
sachag
455
43k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
3.8k
The Art of Programming - Codeland 2020
erikaheidi
57
14k
The Limits of Empathy - UXLibs8
cassininazir
1
500
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
200
Efficient Content Optimization with Google Search Console & Apps Script
katarinadahlin
PRO
1
730
Transcript
Alex Kotliarskyi Building Stellar User Experiences with React Native
None
How do you know ☕ is good?
☕
☕
Expectations
Expectations iOS Android Desktop Web Mobile Web Windows Linux
Mobile apps have higher UX expectations level than Web apps
Expectations change
None
None
iOS Developer Web Developer React ❤ React Native Core Team
(3 years) Building apps with RN (F8, Oculus) Alex Kotliarskyi @alex_frantic
<ScrollView> UIScrollView iOS android.widget.ScrollView Android
"React Native made me 10x more productive"
Android RN iOS time
10% is not done
Building for is different
<ScrollView> <Text> <View> <DatePicker> <Switch> <Image> <TabBar>
<ScrollView> <Text> <View> <DatePicker> <Switch> <Image> <TabBar>
<ScrollView> <Text> <View> <DatePicker> <Switch> <Image> <TabBar> ✨
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library ....
It's all simple things
...but not very obvious
None
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
None
None
<TextInput style={styles.field} value={this.state.email} onChangeText={(email) => this.setState({email})} />
None
None
10% time 100% done
Dismissing keyboard Autofocus Placeholders Space under keyboard Spell checking and
auto-capitalization Keyboard type Custom return key
<TextInput style={styles.field} value={this.state.email} onChangeText={(email) => this.setState({email})} keyboardAppearance="light" placeholder="
[email protected]
" autoFocus={true} autoCapitalize="none"
autoCorrect={false} keyboardType="email-address" returnKeyType="next" onSubmitEditing={this._focusNext} blurOnSubmit={false} />
<EmailInput value={this.state.email} onChangeText={(email) => this.setState({email})} />
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
None
None
None
None
None
Direct manipulation
Direct Manipulation Instant Feedback Physics Touch Targets Ability to Cancel
✍
https://webkit.org/blog/5610/more-responsive-tapping-on-ios/
<Touchable* />
Direct Manipulation Instant Feedback Physics Touch Targets Ability to Cancel
None
Animated.decay() Animated.timing() Animated.spring() https://github.com/wix/react-native-interactable
None
Animated.spring(value, { ... useNativeDriver: true, }).start();
InteractionManager
Direct Manipulation Instant Feedback Physics Touch Targets Ability to Cancel
None
None
https://material.io/guidelines/usability/accessibility.html#accessibility-style
<Touchable hitSlop={...} />
None
Direct Manipulation Instant Feedback Physics Touch Targets Ability to Cancel
Button Cancelled
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
None
None
None
None
None
None
Animation not a luxury
Animation a tool
iOS Android
None
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
Most of web is about pages of content
None
None
class TaskDetails extends React.Component { props: { id: string
}; state = { data: null }; componentDidMount() { fetch(`/tasks?id=${this.props.id}`) .then(response => response.json()) .then(data => this.setState({data})); } render() { if (!this.state.data) { return <ActivityIndicator /> } else { return ( ... ); } } }
Loading...
None
None
None
class TaskDetails extends React.Component { props: { id: string,
data: ?Object }; state = { data: null }; componentDidMount() { fetch(`/tasks?id=${this.props.id}`) .then(response => response.json()) .then(data => this.setState({data})); } render() { const data = this.state.data || this.props.data; return ( ... ); } }
class TaskListItem extends React.Component { render() { return
( ... <TouchableHighlight onPressIn={this._startPrefetching}> ... </TouchableHighlight> ... ); } } 500ms
DX → UX
MobX Relay
It Does Not Matter!
Go beyond what frameworks provide
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
"Building with React Native is so easy, we don't need
standard components" – Developer
Button
function Button(props) { return ( <TouchableOpacity onPress={props.onPress}>
<Text style={styles.blue}> {props.caption} </Text> </TouchableOpacity> ); }
10% time 100% done
Cross platform Disabled state Icon Fixed height Text wrapping Accessibility
Consistency
Build your own standard controls
Button ✨ ✨
Text Input Direct Manipulation Animation and Spatial Awareness Loading State
UI Library
Experience it on a real device Animation and gestures are
essential tools Go beyond what frameworks provide
Not rocket science
Resources?
None
But you can learn to see it
You have to care
Designers have to care
"Stop Drawing Dead Fish" Bret Victor
Little details are big
Quality is our responsibility
Quality defines perception of your business
Quality defines perception of React Native ecosystem
Build "pit of success" Talk more about User Experience Great
examples
Thanks! http://frantic.im @alex_frantic ☕