This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import Flutter | |
import Firebase | |
@UIApplicationMain | |
@objc class AppDelegate: FlutterAppDelegate, UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
var application: UIApplication? | |
var unityController: UnityAppController? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Regarding on how to update the User there are two options and below are the following :- | |
a). Non - customized User. | |
``` | |
user = User.objects.get(pk=x) | |
user.firstname = ‘xxx’ | |
user.save() | |
``` |
OlderNewer