flutter-tips-and-tricks

A Collection of Flutter and Dart Tips and Tricks

Stars
6.7K
Committers
1

Bot releases are visible (Hide)

flutter-tips-and-tricks - 355 - FlatThen on Future in Dart

Published by vandadnp about 2 years ago

If you have a Future<Iterable> and want to use "then()" on it, you will end up with the Iterable which you might need to map manually inside the "then()" function which results in a function call inside another function call, potentially making your code look more complicated than it should be. Using this extension on Future<Iterable>, you can make this a lot easier to read at call-site. Let me show you how => https://github.com/vandadnp/flutter-tips-and-tricks/blob/main/tipsandtricks/flatthen-on-future-in-dart/flatthen-on-future-in-dart.md

flutter-tips-and-tricks - 354 - Rich Text Construction in Flutter

Published by vandadnp about 2 years ago

Using this custom class in Flutter, you can construct rich texts with ease. Simply provide your text or links in an Iterable and this widget will render the rest for you. For the tip and its source code, visit https://github.com/vandadnp/flutter-tips-and-tricks/blob/main/tipsandtricks/rich-text-construction-in-flutter/rich-text-construction-in-flutter.md

flutter-tips-and-tricks - 353 - Firestore Transactions in Flutter

Published by vandadnp about 2 years ago

Learn about Firestore Transactions and how you can perform multiple operations all in the same transaction with a timeout and number-of-retries here => https://github.com/vandadnp/flutter-tips-and-tricks/blob/main/tipsandtricks/firestore-transactions-in-flutter/firestore-transactions-in-flutter.md

flutter-tips-and-tricks - 352 - Image Aspect Ratio in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 351 - Debouncing Streams in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 350 - Reusable Alert Dialogs in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 349 - Recursive Search in Map in Dart

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 348 - Row with Spacing in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 347 - Spreading Custom Classes in Dart

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 346 - StreamProvider in Flutter Riverpod

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 345 - Spreading Iterable<Widget> in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 344 - Immutable Maps in Flutter Riverpod

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 343 - StreamProvider Yield in Riverpod

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 342 - Future Unwrap in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 341 - HTML Colors in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 340 - Generic Watch and Filter in Riverpod

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 339 - Faking APIs with Riverpod

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 338 - Null-Aware Infix Operators in Dart

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 337 - Generic Centering of Widgets in Flutter

Published by vandadnp about 2 years ago

flutter-tips-and-tricks - 336 - Custom Integer to String in Dart

Published by vandadnp about 2 years ago