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
React Nativeでtwitterアプリを作ってみよう!#7 タイムライン機能を作って...
Search
Kosaku Kurino
September 30, 2020
Programming
0
510
React Nativeでtwitterアプリを作ってみよう!#7 タイムライン機能を作ってみよう 練習編
Kosaku Kurino
September 30, 2020
Tweet
Share
More Decks by Kosaku Kurino
See All by Kosaku Kurino
React Nativeでtwitterアプリを作ってみよう!#6 ツイート機能を作ってみよう
gorori
0
240
React Nativeでtwitterアプリを作ってみよう!#5 プロフィール機能を作ってみよう フロントエンド後編
gorori
0
230
React Nativeでtwitterアプリを作ってみよう!#4 プロフィール機能を作ってみよう フロントエンド前編
gorori
0
240
React Nativeでtwitterアプリを作ってみよう!#2 ログイン機能を作ってみよう フロントエンド編
gorori
0
250
React Nativeでtwitterアプリを作ってみよう!#2 ログイン機能を作ってみよう バックエンド編
gorori
0
310
React Nativeでtwitterアプリを作ってみよう!#1 React Nativeを触ってみよう
gorori
0
290
Other Decks in Programming
See All in Programming
明日から始めるリファクタリング
ryounasso
0
130
クラシルを支える技術と組織
rakutek
0
200
ポスターセッション: 「まっすぐ行って、右!」って言ってラズパイカーを動かしたい 〜生成AI × Raspberry Pi Pico × Gradioの試作メモ〜
komofr
0
1.2k
GitHub Actions × AWS OIDC連携の仕組みと経緯を理解する
ota1022
0
250
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
220
止められない医療アプリ、そっと Swift 6 へ
medley
1
140
大規模アプリのDIフレームワーク刷新戦略 ~過去最大規模の並行開発を止めずにアプリ全体に導入するまで~
mot_techtalk
0
410
CSC509 Lecture 06
javiergs
PRO
0
260
どの様にAIエージェントと 協業すべきだったのか?
takefumiyoshii
2
630
XP, Testing and ninja testing ZOZ5
m_seki
3
570
iOSアプリの信頼性を向上させる取り組み/ios-app-improve-reliability
shino8rayu9
0
160
CSC305 Lecture 06
javiergs
PRO
0
210
Featured
See All Featured
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Typedesign – Prime Four
hannesfritz
42
2.8k
Site-Speed That Sticks
csswizardry
11
890
Balancing Empowerment & Direction
lara
4
680
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
Documentation Writing (for coders)
carmenintech
75
5k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.7k
A designer walks into a library…
pauljervisheath
209
24k
How to train your dragon (web standard)
notwaldorf
96
6.3k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Code Review Best Practice
trishagee
72
19k
Transcript
React Native で twitter アプリを作ってみよう! #7 タイムライン機能を作ろう 練習編 by @morioka_yuichi
2020/9/30
タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7 DB 設計
users tweets ゴロリ モーリー hello Yeah ユーザーに紐付けておく事で、セキュリティーをかけやすくなる。
タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7 ハンズオンの流れ Lesson0.1
タイムスタンプ追加 Lesson0 ツイート機能のアーキテクチャについて Lesson0.2 ツイート画⾯のバグ修正 Lesson1 ライブラリのインストールする Lesson2 Custom Hooks を作ろう Lesson3 ホーム画⾯ ( タイムライン ) を作ろう Lesson4 ユーザー画⾯を修正しよう Lesson5 ツイート詳細画⾯を作ろう Lesson6 Firestore インデックスの保存
Lesson0 ツイート機能のアーキテクチャについて ハンズオン後半の「タイムラインを作ろう」で実装予定 5 minutes tweet data read tweet data
write tweet list 作成 ツイートに成功したら 発⽕させる タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7
タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7 tweets hello
Yeah フォローしてるユーザーの投稿を10件ずつ取りたい! ⾃分の投稿を10件ずつ取りたい! ⼈気投稿を10件ずつ取りたい! いけそう
タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7 tweets hello
Yeah フォローしてるユーザーの投稿を10件ずつ取りたい! ⾃分の投稿を10件ずつ取りたい! ⼈気投稿を10件ずつ取りたい! いけない 10フォローを超えると破綻 使うレートが2種類を超えると破綻 いける
タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7 followTweets popularTweets
myTweets hello Yeah hello Yeah hello Yeah フォローしてるユーザーの投稿を10件ずつ取りたい! ⾃分の投稿を10件ずつ取りたい! ⼈気投稿を10件ずつ取りたい! いける
3 minutes アプリ起動 $ yarn start // アプリ起動 // コードを取得
& インストール $ git clone https://github.com/tabikaeru/twitter-handson-expo.git $ yarn $ cd twitter-handson-expo タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7
10 minutes Lesson0.1 - 0.2 https://studio.gorori.jp/docs/twitter_handson_timeline_practice0 タイムライン機能を作ろう 練習編 React Native
で twitter アプリを作ってみよう! #7
30 minutes Lesson1 - 5 https://studio.gorori.jp/docs/twitter_handson_timeline_practice1 タイムライン機能を作ろう 練習編 React Native
で twitter アプリを作ってみよう! #7
5 minutes Lesson6 https://studio.gorori.jp/docs/twitter_handson_timeline_practice2 タイムライン機能を作ろう 練習編 React Native で twitter
アプリを作ってみよう! #7
DM 機能を追加する時の Firestore の設計をしてみよう ※何パターンか考えて、メリット・デメリットが説明できれば Good 宿題 次回まで タイムライン機能を作ろう 練習編
React Native で twitter アプリを作ってみよう! #7
質問があれば https://studio.gorori.jp/forums への投稿 もしくは twitter の DM で 雑談タイム タイムライン機能を作ろう
練習編 React Native で twitter アプリを作ってみよう! #7
https://studio.gorori.jp End タイムライン機能を作ろう 練習編 React Native で twitter アプリを作ってみよう! #7