Flutter Local Data Persistence - SQLite TODO Part 5 (Implementing the UI)

preview_player
Показать описание
This video is Part 5 of our TODO app to introduce SQLite for Flutter. In this video we implement the UI and finish the TODO app.

You can find my Dart playlist here:
Рекомендации по теме
Комментарии
Автор

Really heartbreaking to see such a great channel with too few subscribers!!

shreyanshtripathi
Автор

You have literally saved my day! just in time! Thank you!

tastatura
Автор

Great work keep going I just finished this app today and its perfectly working thank alot jhon
<3

mahmoudelmasry
Автор

I followed every video to the letter and I keep receiving a "unexpected null value" error popping up on the snackbox. Can you please assist?

thembamashaba
Автор

Is there a way to look at the actual database like with phpMyAdmin? I think that would be very useful for trouble shooting. I currently have an error and i am struggling to find the issue but i will persist until i resolve it. Thanks

tertiusscheepers
Автор

are you using auto save in vs code and which is best vs code or android studio

alju_.
Автор

Hello sir, i build an wallpaper app for android but now, i want to add a new feature i.e after 5 or 10 minutes home screen wallpaper should be change automatically but unfortunately i don't know how to do it please help

dheerajverma
Автор

Thanks for this series!
I decided to remove the user creation and login feature of the app, but I have a problem, every time I start the app the todos disappear, but the moment I add a new todo they reappear, any way to load the todo list the moment the app opens instead of adding a to do to get all the previous todos?
I just removed code, but didn't change anything else.
thanks!

saeculorum
Автор

Great work keep going
Can you plz make video about firebase

kingisback
Автор

How to create new data list inside first data .like task manger app

Neelakaz
Автор

hey how can i save this database in internet

alju_.
Автор

I just didn’t understand one thing, ... the logic, ... why do we need registration, if a todolist is done for one person, and he puts on his phone ?? This is not a blog or messenger with a lot of characters ... as I understand it

faizulla
Автор

Selector to 'name' on the TodoPage Text widget is throwing this error:
"Error: Could not find the correct Provider<UserService> above this Consumer<UserService> Widget
This happens because you used a `BuildContext` that does not include the provider
of your choice."

Code looks like yours:
child: Selector<UserService, User>(
selector: (context, value) => value.currentUser,
builder: (context, value, child) {
return Text(
'${value.name}\'s Todo list',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 46,
fontWeight: FontWeight.w200,
color: Colors.white,
),
);
}, // builder
),

Suggestions?

jimaustin