I'm working on a sign up page where i want to separate the input field for first name and last name. Based on the documentation, it doesn't seem to be possible, so i wanted to check if it is possible in some way/a workaround that isn't mentioned in the documentation?
The user part in Appwrite is pretty much done for you, meaning any changes you want to do will usually go outside of the user realm.
For your use-case you can
- ☑️ Set these details in the
user-prefenecesobject https://appwrite.io/docs/client/account?sdk=web-default#accountUpdatePrefs - Set these details in a separate collection
- Set it as the user name and use split it at runtime
user.name.split(' ')
Alright, gonna try this. Thanks @Binyamin !
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...
- Flutter OAuth2 does not attach Google se...
Hi Appwrite team, I’m using Appwrite Auth in a Flutter mobile app and trying to upgrade an anonymous user to Google OAuth. Docs say that if there is already a...