Gif: https://loading.io/spinner/
https://stackoverflow.com/a/64473806
- Valide sv deeplink ios: https://search.developer.apple.com/appsearch-validation-tool
https://github.com/dangngocduc/provider_sample
Page search ui: https://fluttergems.dev/dropdown/
UI table the same excel: https://pub.dev/packages/lazy_data_table
code_flutter: gitub: https://github.com/flutter/flutter
-
tai xcode: https://stackoverflow.com/questions/10335747/how-to-download-xcode-dmg-or-xip-file
-
https://stackoverflow.com/questions/51948252/hide-appbar-on-scroll-flutter
II. fix up store ios flutter 1.9: flutter build ios --release may use a debug Flutter.framework by mistake
- instagram clone: https://github.com/mohak1283/Instagram-Clone
- Twitter clone :https://github.com/devdennysegura/flutter-twitter-clone
- open source: https://github.com/nisrulz/flutter-examples
- example app (youtube): https://github.com/iampawan/FlutterExampleApps
- lib ui: https://github.com/Solido/awesome-flutter
- basic: https://kipalog.com/tags/dart?count=4 https://kipalog.com/posts/Nhung-diem-danh-dau-khi-tim-hieu-ve-Dart
- base: https://viblo.asia/p/flutter-how-to-use-redux-1VgZvpgO5Aw
- demo: https://github.com/zrg-team/flutter_redux
- todoapp: https://github.com/xqwzts/flutter-redux-todo-list
- lib :https://github.com/tekartik/sqflite
- example: https://grokonez.com/flutter/flutter-sqlite-example-crud-sqflite-example
- tutorial: https://medium.com/flutter-community/using-sqlite-in-flutter-187c1a82e8b
- demo: https://github.com/Rahiche/sqlite_demo
- open asset file: https://stackoverflow.com/a/51387985
- http://eitguide.net/flutter-bai-9-button-va-listview/
- https://medium.com/flutter-community/flutter-listview-and-scrollphysics-a-detailed-look-7f0912df2754
ListView.builder(
itemCount: data == null ? 1 : data.length + 1,
itemBuilder: (BuildContext context, int index) {
if (index == 0) {
// return the header
return new Column(...);
}
index -= 1;
// return row
var row = data[index];
return new InkWell(... with row ...);
},
);
10. AsyncMemoizer: it runs the function only once, and when called again, returns the cached future.
- Flutter Switching to Tab Reloads Widgets and runs FutureBuilder: with AutomaticKeepAliveClientMixin https://stackoverflow.com/a/51225879/10819917
- https://flatteredwithflutter.com/actionsheet-in-flutter/
- code: https://github.com/AseemWangoo/flutter_programs/blob/master/CupertinoActionSheet.dart
The keyword for Android theme/style is Material (default design), the keyword for iOS theme/style is Cupertino. Every iOS theme widget has the prefix Cupertino. So that, for you requirement, we can guess the keyword is CupertinoDialog/CupertinoAlertDialog
for that you need to run flutter build ios --release before you archive the app.
This is a known issue.
* 100 Continue
* 101 Switching Protocols
* 200 OK
* 201 Created
* 202 Accepted
* 203 Non-Authoritative Information
* 204 No Content
* 205 Reset Content
* 206 Partial Content
* 300 Multiple Choices
* 301 Moved Permanently
* 302 Found
* 303 See Other
* 304 Not Modified
* 307 Temporary Redirect
* 308 Permanent Redirect
* 400 Bad Request
* 401 Unauthorized
* 403 Forbidden
* 404 Not Found
* 405 Method Not Allowed
* 406 Not Acceptable
* 407 Proxy Authentication Required
* 408 Request Timeout
* 409 Conflict
* 410 Gone
* 411 Length Required
* 412 Precondition Failed
* 413 Payload Too Large
* 414 URI Too Long
* 415 Unsupported Media Type
* 416 Range Not Satisfiable
* 417 Expectation Failed
* 418 I'm a teapot
* 422 Unprocessable Entity
* 425 Too Early
* 426 Upgrade Required
* 428 Precondition Required
* 429 Too Many Requests
* 431 Request Header Fields Too Large
* 451 Unavailable For Legal Reasons
* 500 Internal Server Error
* 501 Not Implemented
* 502 Bad Gateway
* 503 Service Unavailable
* 504 Gateway Timeout
* 505 HTTP Version Not Supported
* 511 Network Authentication Required
- Validating Receipts With the App Store: https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW1
- set up apk android: https://stackoverflow.com/a/35132936/10819917