March 25, 2020 Adem Bilican 4 comments

Accepting Stripe payments (3D Secure ready) in React Native (iOS with Native Modules)

TL;DR you can already access the finished project on GitHub Mobile app: https://github.com/ademcan/react-native-stripe Back-end: https://github.com/ademcan/stripe-backend This tutorial is also available as a video format on YouTube. I was planning this blogpost since quite some time, and I thought now was the perfect time as some people were asking about it on Twitter. Stripe is a […]

February 15, 2019 Adem Bilican No comments

How to add a linter to your React Native project

The definition of linting on Wikipedia is pretty clear :”Lint, or a linter, is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs”. Photo by unsplash-logoJames Pond on Unsplash By using a linter in your React Native project you’ll be able to catch code errors early on and […]

November 9, 2018 Adem Bilican 2 comments

How to create a react-native bridge library for iOS

React-Native allows user to create bridges to access native code from JavaScript. Once you have created your own bridges you might want to share them with the community. This article will explain in a few simple steps how to do so. 1. Create a new project with react-native-create-library Open your terminal and run This will […]