REST Client Extension for VSCode

How to send HTTP requests and view the response directly in Visual Studio Code. https://codewithandrea.com/tips/rest-client-vscode/

созданный 27d | 18 мая 2024 г., 08:20:11


Войдите, чтобы добавить комментарий

Другие сообщения в этой группе

How to use defaultTargetPlatform and kIsWeb

To detect the current platform, check for kIsWeb beforehand and use it together with defaultTargetPlatform, which doesn't import dart:io. https://codewithandrea.com/tips/default-target-platform/

13 июн. 2024 г., 08:50:03 | Code with Andrea
The Universal Platform Package

With the Universal Platform package, you can perform platform detection with a unified syntax on all platforms, including web, without errors. https://codewithandrea.com/tips/universal-platform-packag

11 июн. 2024 г., 15:50:03 | Code with Andrea
Taking Screenshots with the Flutter CLI

How to use the Flutter CLI to save screenshots from connected iOS and Android emulators https://codewithandrea.com/tips/flutter-screenshot/

5 июн. 2024 г., 14:10:04 | Code with Andrea
Useful Aliases for Flutter App Development

A collection of useful aliases to speed up your Flutter app development workflow. https://codewithandrea.com/tips/useful-aliases-flutter-dev/

5 июн. 2024 г., 14:10:03 | Code with Andrea
Prefer const over final over var

Const is for hardcoded, compile-time constants. Final is for read-only variables that are set just once. Var is for variables that are set more than once. https://codewithandrea.com/tips/const-vs-fina

22 мая 2024 г., 08:10:04 | Code with Andrea
Use Type Annotations for Safer Code

By adding type annotations to your collections, the Dart analyzer will warn you if you add values of the wrong type. https://codewithandrea.com/tips/use-type-annotations-for-safer-code/

22 мая 2024 г., 08:10:04 | Code with Andrea
How to Define Type Aliases in Dart

Here's how to use typedef to define type aliases for your function and non-function types in Dart. https://codewithandrea.com/tips/how-to-define-type-aliases-dart/

22 мая 2024 г., 08:10:04 | Code with Andrea