Part 30 | NoteAPP Update, Delete, Get | Flutter Malayalam Tutorial

preview_player
Показать описание
Hey Guys! Make sure you have subscribed to this channel to get updates on the upcoming tutorial series.

Watch 100k Coding Challenge:

Subscribe to Kerala's leading tech-career YouTube channel for free programming tutorials and tech-career videos in Malayalam. Learn the skills and knowledge needed to build a high-income career in IT. Join our community of future tech experts today!

Transform your career with 'Brocamp'—our 12 months Offline & Online training program that places you in a real office environment to master coding and in-demand skills. With over 1700+ successful placements averaging ₹40,000/month, secure your future with our proven career-focused training programs.

Ready to start your journey?
Connect with us: Call/WhatsApp us at 7034395811

To know more about Brocamp, Visit:
Рекомендации по теме
Комментарии
Автор

Keep posting new tutorials and clone projects. Thanks a lot

AG-zfwj
Автор

# add options params if you get Dio error

final result = await dio.get(url.baseUrl+url.getAllNotes,
options: Options(
responseType: ResponseType.plain,
));

rockyt
Автор

hey i am bit struggling, . After converting to stateless widget, postcallback functin being called in infinite loop. (athinullil oru print statment koduth nokikke, apo kaanam) . Athinullil set state undallo. So component veendum rerender avum. Angane avumpol pinnem post call back vilikkum.. Apo pinnem setstate work avvum... angane angane shiva. ini njan enthelum mistake varuthye avo

okey
Автор

Looking forward to the next video in "State Management" and "Advanced UI" I hope the UI include the proper way of design(Responsive) like media Query and all. From now please show advanced levels and please try to include more real life projects scenario's. Thanks!

rootadmin
Автор

When the singleton object is created for the class, the BaseOptions set for the dio is not working. That is we have to manually append base URL while calling the post method of dio.

roshansebastian
Автор

Dart Unhandled Exception: DioError [DioErrorType.other]: Invalid argument(s): No host specified in URI /note/getAll
Cant resolve this error
plse help

ryomensukuna
Автор

while specifying the response as json, it worked for me.

NoteAPIs() {
_dio.options = BaseOptions(
baseUrl: _noteUrls.baseURL,
responseType: ResponseType.json,
);
}

@override
Future<NoteModel?> createNote(NoteModel noteModel) async {
var _result;
try {
_result = await _dio.post(
_noteUrls.createNote,
data: noteModel.toJson(),
);

return as Map<String, dynamic>);
} on DioError catch (e) {
print("DIO Error: " + e.message);
return null;
} catch (e) {
print("Error: " + e.toString());
return null;
}
}

roshansebastian