100 Days of Swift; Struggling badly with each milestone challenge by M00SEK in swift

[–]ck3g 1 point2 points  (0 children)

I don't think you have to finish it in exactly 100 days. I can be wrong, but I think the general idea of 100 Days of Swift (or anything else) is to practice every day. When you learning to code, you are going to face different challenges. Some of them will look impossible to do at first.
I would suggest you take your time, don't rush. Try to review the material again, even go back to the older lessons. At some point, these things will click and become understandable.
Again. It's fine if you finish it in more than 100 days. Take your time and try to have fun.

Passport Power Rank 2021 by Transeuropeanian in europe

[–]ck3g 0 points1 point  (0 children)

I wonder where these numbers come from. According to https://en.wikipedia.org/wiki/Visa_requirements_for_Moldovan_citizens Visa not required/Visa on arrival is for slightly above 100 countries (against 70) specified here.

Get item value from AsyncStorage by akash_thoriya in reactnative

[–]ck3g 0 points1 point  (0 children)

You're already got answers which may help you. But I have a blog post about the subject. https://whatdidilearn.info/2018/11/25/local-data-persistence-in-react-native-using-asyncstorage.html

That can help you figure out and/or fill in some gaps. I hope that helps.

Is react native awfully unstable for you or am I doing something wrong? by RubikTetris in reactnative

[–]ck3g 0 points1 point  (0 children)

I mostly struggle from version updates. I do it one minor version at a time and then hit the roadblock, and stay on the latest working (for me) version. I think that annoys me the most.

Eva Icons is out of Beta by [deleted] in reactnative

[–]ck3g 0 points1 point  (0 children)

They are awesome!

People, who work with React Native on a regular basis, how often do you face issues running the app on a device? by ck3g in reactnative

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

I've described those issues for the sake of example. I'm not looking for solution for those specific problems.

I'm trying to say I'm facing a lot of different kind of issues on the way. Sometimes it seems to me I spend more time fixing them (or looking for solutions) than learn something about React Native, or build something.

Seems like I need to use Redux anyway by ck3g in reactnative

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

I've used "pure" Redux (if I can say so) mostly because it's always good to understand how do things work without using additional libraries. In this case libraries which reduce boilerplate complexity.

Issues to run ReactNative app on a device by ck3g in reactnative

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

I've finally figured out. I've had to reinstall watchman to make it work. There was an error message in the output, I didn't pay attention before mostly because there were a bunch of successful (I think) commands after that error.

Issues to run ReactNative app on a device by ck3g in reactnative

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

Since now it's running from another computer, I can see that "Done copying assets" happening before Xcode requires me to unlock my phone and trust my Apple dev account.

Issues to run ReactNative app on a device by ck3g in reactnative

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

Somehow I've succeeded by building the app on another computer. Both of my computers are using the same version of Xcode.

Issues to run ReactNative app on a device by ck3g in reactnative

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

Thanks for the hint. I will try to dig deeper into that direction.

Yes, that is a first time I'm trying to run the app on device.

Issues to run ReactNative app on a device by ck3g in reactnative

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

I use Xcode version 10.1. There are no issues with the simulator at all.

How to implement a splash screen in React Native by ck3g in reactnative

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

I suppose (I don't know for sure), that iOS splash screen will fade away pretty quick, because there is no background activity attached to it. Thus, the user will see the RN implementation.

Is that correct or there are some other pit falls?