14 posts for "react-native"
Making a simple rating system with React Native
September 29, 2021How to make a 5 star rating system in a React Native app, with a Node JS server and Postgres database. This solution was used in my Cinepicks app.
Developing my second mobile app - Cinepicks
July 26, 2021An overview of Cinepicks, including features, technical aspects like frameworks and server setup, we all as challenges tackled on the way.
How to hide a search bar on scroll in React Native
March 25, 2021Hiding a text input search bar when a FlatList component is scrolled down using React Native Animated and no external packages - simple and easy to implement.
Using the WebSockets API with React Native and NodeJS
February 25, 2021Implementing WebSockets API between React Native and Node Express server, accessing sockets from Express routes and sending messages to specific users sockets.
A plain and separate tabbed view with React Native Navigation
November 25, 2020How to implement a simple view for logged out users, and a separate tabbed view with side menu for logged in users with Wix's React Native Navigation.
Adding user mentions (tagging) for React Native Gifted Chat
October 25, 2019React Native Gifted Chat doesn't come with mentions out of the box, so here's how I integrated it to my project efficiently.
How to detect a tap outside of an element in React Native
May 09, 2019Detecting taps outside of elements in React Native is different to the web, and is needed for closing popups and other elements. Here's a quick solution.
Connecting a React Native app to a local Node and debugging server
November 07, 2018A quick guide for using your local debugging and data servers with React Native on real devices, for both iOS and Android.
The rise and fall of Crossed Paths on the App Store - my React Native experience
August 01, 2018Getting my Crossed Paths app on the App Store was a journey, and now my journey is about to end because of Facebook's privacy rules.
React Native tips and tricks I've learned over the past year
May 10, 2018A collection of tips and tricks I've gathered over the past year of developing apps with React Native.
Installing Google Maps on a React Native application using react-native-maps
April 06, 2018Installing react-native-maps and the Google Maps integration was a pain, and there are a few steps here not listed in the official docs.
Using JSON Web Tokens and refresh tokens with React Native, Redux and Node JS - Part 2
October 25, 2017Updated 18th March - Carrying on with how I incorporated JWT stateless authentication into React Native using Redux and Redux Thunk.
Connecting to the Instagram API using React Native and Node Express
July 26, 2017Connecting to the Instagram API in 2017 is a big of a nightmare with their new rules. This post will discuss how to connect using React Native, Node and Express.
Using JSON Web Tokens and refresh tokens with React Native, Redux and Node JS - Part 1
July 18, 2017Updated 18th March - Going into detail with stateless authentication using JSON Web Tokens with React Native, Redux and Node.