#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox
Ways you can deal with exceptions
https://api.dart.dev/dev/2.16.0-35.0.dev/dart-core/Error/throwWithStackTrace.html
Ways you can deal with exceptions
https://api.dart.dev/dev/2.16.0-35.0.dev/dart-core/Error/throwWithStackTrace.html
❤36
Most developers don't know how to debug WebView and CustomTabs and track network requests, layouts, and errors.
But it's very simple
1) Start debugging on your phone or emulator as usual
2) Open in chrome ON YOUR DESKTOP the link
3) Find the web view of the SMARTPHONE on this page
4) Click “
5) Debug with DevTools like a regular website, console, network requests, etc. You can also see what's happening on the screen
#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox #devtools #webview
But it's very simple
1) Start debugging on your phone or emulator as usual
2) Open in chrome ON YOUR DESKTOP the link
chrome://inspect/#devices3) Find the web view of the SMARTPHONE on this page
4) Click “
inspect”5) Debug with DevTools like a regular website, console, network requests, etc. You can also see what's happening on the screen
#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox #devtools #webview
❤35
adb shell "input keyevent 61 \
&& input text [email protected] \
&& input keyevent 61 \
&& input text password \
&& input keyevent 66"
#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox
❤23
❤29
Forwarded from DART 🎯 FLUTTER (🅵🅾️🆇)
#dart #flutter #benchmark #note #performance #bytes
Performance benchmark of different ways to append data to a list in dart.
https://gist.github.com/PlugFox/9849994d1f229967ef5dc408cb6b7647
Performance benchmark of different ways to append data to a list in dart.
BytesBuilder vs AddAll vs Spread vs Concatenationhttps://gist.github.com/PlugFox/9849994d1f229967ef5dc408cb6b7647
Gist
Performance benchmark of different ways to append data to a list in dart, BytesBuilder vs AddAll vs Spread vs Concatenation
Performance benchmark of different ways to append data to a list in dart, BytesBuilder vs AddAll vs Spread vs Concatenation - main.dart
❤15
In Flutter and Dart applications, it is common to encounter scenarios where a class depends on an asynchronous operation. For instance, a client or service may need to fetch data from a network, or a database may need to establish a connection before being utilized. There are various ways to handle these dependencies efficiently. This article will explore five different approaches to managing asynchronous dependencies in your Dart code.
https://plugfox.dev/handling-asynchronous-dependencies-tips/
#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox
https://plugfox.dev/handling-asynchronous-dependencies-tips/
#tipoftheday #dart #dartdev #dartlang #flutter #flutterdev #plugfox
Plague Fox
Handling Asynchronous Dependencies in Flutter & Dart
When working with Flutter and Dart, developers often face situations where a class depends on an async operation, such as fetching data from a network or establishing a database connection. This article presents five tips for handling async dependencies in…
❤16