-
Asynchronous Programming trong Dart
Dart - Asynchronous Programming Lập trình bất đồng bộ cho phép chương trình làm việc trong khi đợi các hành động khác hoàn thành. Một số ví dụ sử dụng lập trình bất đồng bộ Lấy dữ liệu qua mạng Các thao tác xử lí trong cơ sở dữ liêu Đọc/ghi dữ liệu trong file. Trong Dart, để xử lí bất đồng bộ, ta có thể... Read More
-
Shared Preferences là gì?
Shared Preferences là gì? Shared Preferences là nơi bạn có thể lưu trữ các thông tin dưới dạng key-value được xây dựng sẵn trong hệ điều hành Android hoặc NUserDefault trong iOS Flutter shared_preferences plugin shared_preferences là thư cho phép lưu trữ và lấy dữ liệu từ hệ điều hành một cách nhanh chóng mà kh... Read More
-
4 tính chất của hướng đối tượng trong Dart?
##4 tính chất của OOP ###Tính kế thừa 💡 Dart sử dụng từ khóa `extends` để tạo ra một `class` mới kế thừa một class đã có sẵn. 💡 Class con sinh ra sẽ có (kế thừa) những thuộc tính và phương thức của class cha // base (parent) class class Parent { // some props // some methods } // derived (child) cla... Read More
-
How can I remove the Flutter debug banner?
On your MaterialApp set debugShowCheckedModeBanner to false. MaterialApp( debugShowCheckedModeBanner: false, ) Or, on your CupertinoApp: CupertinoApp( debugShowCheckedModeBanner: false ) The debug banner will also automatically be removed on release build. If you are using Android Studio then go to Run →... Read More
-
How can I add a border to a widget in Flutter?
You can add the Text as a child to a Container that has a BoxDecoration with border property: Container( margin: const EdgeInsets.all(15.0), padding: const EdgeInsets.all(3.0), decoration: BoxDecoration( border: Border.all(color: Colors.blueAccent) ), child: Text('My Awesome Border'), ) The best... Read More
-
The 30 Fastest WordPress Themes in 2022
How fast should a website load? There are many factors that affect a website’s load time. These include: How many images, videos, and other media files are on the page The size of those images, videos, and other media files Your site’s coding and server-side scripts Whether you use a CDN service What ... Read More
-
Danh sách mã trạng thái của HTTP
Mã trạng thái HTTP Status Code là gì? Mã trạng thái HTTP Status Code là trạng thái được phản hồi lại mỗi khi Search Engine hoặc người dùng đưa ra yêu cầu (request) cho web server. Mã trạng thái HTTP là các số nguyên có ba chữ số. Chữ số đầu tiên được sử dụng để xác định mã trong một danh mục cụ thể nằm trong năm... Read More