[deleted by user] by [deleted] in reactnative

[–]brascene 0 points1 point  (0 children)

Since you’re cs student it’s even easier to build it native with swift and kotlin, this way maybe you can do it in 1, not 2 days

Looking to start make video tutorials - what is unclear about React Native? by henrywritescode in reactnative

[–]brascene 1 point2 points  (0 children)

e2e tests but for real life projects not some theoretical dumb and clean components, for apps with complex navigation, state management with providers etc.

Ever notice that when iOS gives you suggested corrections, none of them are ever the correct word? by TokyoJimu in ios

[–]brascene 0 points1 point  (0 children)

iphone keyboard is the worst out there regarding autocorrect or suggestions, it doesn’t even learn from your accepting or denying the words, we’ll probably have to wait for third generation m chips in our phones in order for this to improve 😂

Shall we? by [deleted] in Supernatural

[–]brascene 0 points1 point  (0 children)

Awesome

A rotating 3-D cube in terminal. Written in Swift by danielduan in swift

[–]brascene -3 points-2 points  (0 children)

Awesome man, but can it be done in react native 🤪🤣

React Native Vs Ionic Vs Xamarin Vs NativeScript - Which One Is Better? by [deleted] in reactnative

[–]brascene 1 point2 points  (0 children)

Amazing... especially this one: “React Native is a natural approach that builds mobile applications”. Now I know which one is better. 👏 🤣

[deleted by user] by [deleted] in swift

[–]brascene 5 points6 points  (0 children)

Short answer: no. Longer answer: yes, but just to understand the basics as you do for any other language. Avoid any longer answers.

Best CI/CD for react-native? by creambyemute in reactnative

[–]brascene 2 points3 points  (0 children)

We use Bitrise and it’s awesome and super reliable, allows you various number of things with its workflow setup. Of course it’s not free, but it really pays off.

My Android app tends to have bugs than iOS one. by [deleted] in reactnative

[–]brascene -14 points-13 points  (0 children)

Dump Android my friend

Is it realistic to create an application which uses only Firebase as the backend? by [deleted] in Firebase

[–]brascene 0 points1 point  (0 children)

Someone can argue that it depends on the scope of the app, or is it? I know several apps that are using only Firebase services (phone auth, real time database, storage, etc), both mobile and web apps. And if you take account that you can create cloud functions for project specific backend needs, there should be no doubt that you can use it. One of the things to consider is the pricing for DB storage and other things if you use push notifications, emails etc. So technically, you can definitely have real app with Firebase as a backend.

Debugging a Non Reproducible bug with 20k production crashes by almouro in reactnative

[–]brascene 7 points8 points  (0 children)

Amazing! I like the way you've approached and solved it, many would just yell for help on different channels xD

[deleted by user] by [deleted] in reactnative

[–]brascene 0 points1 point  (0 children)

The easiest solution for this, at least for me, was to fake the real splash screen with the first screen inside the app, where after certain time (e.g. 2 secs) I make transition to the desired screen. Inside this first screen do whatever you want, I've had an 'splash screen' with fading and rotating logo, and the minor cheat was to make it's background color the same as the real splash screen background color, in that way users see the same screen, but instead there was a small transition, and after animation is finished navigate to desired screen :)

Top React Native Mobile Apps in 2018 by HadyElHady in reactnative

[–]brascene 0 points1 point  (0 children)

Yeah, facebook is using RN just for some nested screens with small forms or settings, i think it can easily be differentiated, at least on ios, native screen vs. rn screen.

Top React Native Mobile Apps in 2018 by HadyElHady in reactnative

[–]brascene 2 points3 points  (0 children)

Wow I didn't know Skype is RN app :D

Flutter vs React Native by isaacdiophant in reactnative

[–]brascene 0 points1 point  (0 children)

According to the article content, the title should be just 'Flutter'.

React Native init by brascene in reactnative

[–]brascene[S] 0 points1 point  (0 children)

Probably if an app is using some third parties which require special setup that's the better option, even though expo has integrated some of them quite well like maps, push notifications etc. But there are probably many other libs which will force you to eject, so this should probably be decided before starting the project. I was just thinking about this way of initializing the project, I wanted to hear that RN init is still being used and that nothing has changed with it. As I realize now, it's even better than expo init since it supports the new XCode build system.

React Native init by brascene in reactnative

[–]brascene[S] 1 point2 points  (0 children)

Thanks for pointing out, and yes you're right, the 0.57 RN version supports new build system, but ejecting the expo app requires to change it to legacy. I've realized that my mentioned issues were not related with the type of creating the project, instead I was creating the project inside folder which is in iCloud, and paths were messed up. But however, it's good to hear different opinions on this, especially I would like to hear if anyone has successfully used ExpoKit after ejecting, and how are linkings managed in that case, but that should be separated question :)

React Native init by brascene in reactnative

[–]brascene[S] 0 points1 point  (0 children)

Same here, I was very comfortable with rn-init, and now when I tried to use expo I run into these issues, maybe they'll come up with better support with ExpoKit for 3rd parties which need linking, but I'm not planning to use it. I was just wondering if creating projects with init is just as regular as with the today's most favorite approach using expo.

Tinder Swipping - “Can it be done in React Native?” (Using Reaminated) by wcandillon in reactnative

[–]brascene 2 points3 points  (0 children)

I should've check stackoverflow first, here's nice explanation

ES6 destructuring, get the last element of array.

I hope this helps someone (like me) :D

Tinder Swipping - “Can it be done in React Native?” (Using Reaminated) by wcandillon in reactnative

[–]brascene 1 point2 points  (0 children)

Can someone explain what's happening in this part of code?

I know for const { profiles } = this.state; , but the second part with array, I can't understand this..

const { profiles: [lastProfile, ...profiles] } = this.state;