Swift Kim

Results 112 comments of Swift Kim

@karolk98 As you have noticed, the current active profile is used for signing when building and running an app with the `flutter-tizen run` command. > however I've currently run into...

@JSUYA The sample code I used for testing can be found at https://github.com/swift-kim/csharp_module/blob/master/tizen/App.cs but I'm really new to EFL and ElmSharp so the code is not very good. The app...

All issues have been addressed. Please review again.

https://github.com/swift-kim/webapp I don't know why but this app (containing compiled [jsonexample](https://flutter.github.io/samples/jsonexample.html) JS code) just runs without problem on my watch (SM-R500) but only shows a blank white screen on other...

The user should also be able to "shutdown" the engine or "detach" it from the host view.

> Is this enough? Yes, I think we're handling it correctly. (Or do we need an explicit `Destroy` method?) > do you know anything about this? I don't have much...

@JRazek I personally prefer google_sign_in_tizen's way in terms of the user interface. If you use a webview for authentication, the user has to enter their account name and password using...

@JRazek That looks like only a partial solution for your final goal (which is to implement `firebase_auth` for Tizen). You need to also consider how the user (an app developer)...

The final app side code will look like this: ```dart // If using google_sign_in: GoogleSignIn googleSignIn = GoogleSignIn(scopes: ['email', 'profile']); GoogleSignInTizen.setCredentials( clientId: .., clientSecret: .., ); GoogleSignInAccount googleUser = await...

@JRazek The first option makes most sense to me but it's up to your choice. Obviously the third one will require more user code than the others so you will...