Flutter - Sign in & Sign up (3) User Profile ( SQLite, Preference, save data ) example, tutorial

preview_player
Показать описание
Please comment on any questions! If this movie helped you, please subscribe to my Youtube Channel, please :) 🙋🏻‍♂️

0:01 Preview result.
1:09 Show the UI follow chart.
1:59 Start explain code.
2:30 Crop and edit photo from library.
3:33 Save user data to Database.
4:31 Show user profile

When starting the application first time, they usually request sign up or sign in to get user information. Here is how to make the sign-in screen.

* Reference links:

* Develop environment.

- Flutter Version: 1.12.13+hotfix.8
- Dart Version: 2.7.0
- Xcode Version: 11.3.1
- Android Studio: 3.5
- OS Version: MacOS Catalina 10.15.3

Thank you for watching :)

#Flutter, #UserProfile, #SignUp
Рекомендации по теме
Комментарии
Автор

helpful and very calming (i'm under a deadline and very stressed and needed this) <3

salma-amlas
Автор

This is what I am looking for thanks for sharing it.
And also for sharing the flowchart of the app, makes it easier to understand

kasturimeh
Автор

Validation is not working on fields? What I am missing as your complete code set up is used by me.

ashusinha
Автор

Hello. whenever i'm trying to add a picture in my gallery, it is closing the application. Can someone help me please ?

yadjnishnursiah
Автор

Nice man.
How about Facebook and Google login with SQL?

tangeamseng
Автор

Problem part while I can use the same code.


SignUp/signupwithmail.dart


void _update() async {
// row to update
Map<String, dynamic> row = {
DatabaseHelper.columnId : 1,
DatabaseHelper.columnName : 'Mary',
DatabaseHelper.columnAge : 32
};
final rowsAffected = await dbHelper.update(row);
print('updated $rowsAffected row(s)');
}

void _delete() async {
// Assuming that the number of rows is the id for the last row.
final id = await dbHelper.queryRowCount();
final rowsDeleted = await dbHelper.delete(id);
print('deleted $rowsDeleted row(s): row $id');
}
}






The declaration '_update' isn't referenced.
Try removing the declaration of '_update'.




The declaration '_delete' isn't referenced.
Try removing the declaration of '_delete'.






I got an error this line so would you please fix this?
Thank you!!

peacefulnepal
Автор

Why the hell did you put music in background 😡

shaquib_n