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
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
脅威をエンジニアリングの糧にして――現場編 / Turning Threats into Engineering Fuel — Field Edition
nrslib
0
250
密結合なバックエンドから TypeScript のコードを生成する
kemuridama
1
740
セキュリティの専門家じゃなくてもできる。「セキュリティ意識」をアップデートして サプライチェーン攻撃への耐性を高めよう。
tk3fftk
5
630
Java × distroless で 軽量なコンテナイメージを / Java on Distroless
contour_gara
0
500
TAKTでAI駆動開発の品質を設計する
j5ik2o
6
930
決定論的オーケストレーションの設計と実装 / Design and Implementation of Deterministic Orchestration
nrslib
3
1.1k
PHPで使える日時の表現と、その知り方 #frontend_phpcon_do
o0h
PRO
0
190
AIエージェントと協働するCLI開発 — BunとOpenClawで学んだこと
yoshikouki
1
240
Spec Driven Development | AI Summit Lisbon
danielsogl
PRO
0
150
エージェンティックRAGにAWSで入門しよう!
har1101
7
1.1k
正しくソフトウェアを作る、前提を疑うための認知の視点 / doubt-premise
minodriven
17
5.9k
Signal Forms: Beyond the Basics @ngBaguette 2026 in Paris
manfredsteyer
PRO
0
230
Featured
See All Featured
How to Ace a Technical Interview
jacobian
281
24k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Google's AI Overviews - The New Search
badams
0
1k
A Soul's Torment
seathinner
6
2.9k
Statistics for Hackers
jakevdp
799
230k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
37
6.5k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
10k
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
250
1.3M
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
120k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
280
For a Future-Friendly Web
brad_frost
183
10k
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 ☕