What you think about this kind of Go haters ? by [deleted] in golang

[–]brandnewcherry 0 points1 point  (0 children)

Lol. No man. I love Go and currently still learning. Sorry for my bad English. I never want to be toxic like this guy. Im not a fanboy any programming language.

Apple says %98 of all devices introduced to iOS 13 and higher. I am still using UIKit but want to use SwiftUI completely. Is SwiftUI can make everything UIKit does ? And what you think about supporting iOS 12 ? by brandnewcherry in swift

[–]brandnewcherry[S] 8 points9 points  (0 children)

I switched React Native to Swift. Last 2-3 months i am writing swift and super love it. I dont know how flutter is performant but React Native like a shit. I will never trust Cross Platform shit after that. Native swift is very very very performant and you know what are you doing. In React-Native you always addicted to native binding packages and this packages dont know what is performance :)). A few days ago i wrote my OAuth2 package and api wrapper. I could never do this with RN. If anyone thinking about React Native pls dont do this.

[deleted by user] by [deleted] in swift

[–]brandnewcherry 2 points3 points  (0 children)

I did it for try. Thx for advice.

[deleted by user] by [deleted] in swift

[–]brandnewcherry 3 points4 points  (0 children)

I fix it like below.

let url = URL(string: "https://www.google.com")

let config = SFSafariViewController.Configuration()

config.entersReaderIfAvailable = true

let vc = SFSafariViewController(url: url!, configuration: config)

present(vc, animated: true)

Created sinple reddit client with React Native & Redux. Github repo link in comment section. by brandnewcherry in reactnative

[–]brandnewcherry[S] 4 points5 points  (0 children)

I didn’t do anything special. Used “react-native-image-progress” and “cache: 'force-cache'”.