Skip to content

Instantly share code, notes, and snippets.

View huxaiphaer's full-sized avatar
⚔️
Code Mutant

LUTAAYA HUZAIFAH IDRIS huxaiphaer

⚔️
Code Mutant
View GitHub Profile
import UIKit
import Flutter
import Firebase
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate, UIResponder, UIApplicationDelegate {
var window: UIWindow?
var application: UIApplication?
var unityController: UnityAppController?
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()
```