Profile avatar
onlyflutter.com
Learn everything about Flutter: https://onlyflutter.com
58 posts 62 followers 10 following
Regular Contributor
Active Commenter

When it comes to Flutter, there are two popular approaches to writing integration tests: 1. ๐—–๐—ผ๐—บ๐—บ๐—ผ๐—ป ๐—ฎ๐—ฝ๐—ฝ๐—ฟ๐—ผ๐—ฎ๐—ฐ๐—ต: Uses a separate integration_test directory. 2. ๐—™๐—น๐˜‚๐˜๐˜๐—ฒ๐—ฟ ๐——๐—ฟ๐—ถ๐˜ƒ๐—ฒ๐—ฟ ๐—ฎ๐—ฝ๐—ฝ๐—ฟ๐—ผ๐—ฎ๐—ฐ๐—ต: Possibility to reuse widget tests from the test directory. #flutterdev ๐Ÿ‘‰ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป ๐—บ๐—ผ๐—ฟ๐—ฒ: onlyflutter.com/how-to-creat...

Hive_ce 2.11.0 (prerelease) has been released which includes support for isolates through IsolatedHive. #flutterdev #dart ๐Ÿ‘‰Test it out here: pub.dev/packages/hiv... New to Hive CE? Check out the following article: onlyflutter.com/how-to-add-a...

Looking for a way to monetize your Flutter application? Consider ads using Google AdMob. Ads are a great way to monetize your application. Ads can be placed at the bottom of your application, inside lists, or even on the whole page. #flutterdev #dart ๐Ÿ‘‰ Learn more: onlyflutter.com/flutter-ads-...

Did you know you can easily host your Flutter web apps for free using Firebase? Firebase offers a free tier with up to 10GB of hosting per month. For basic Flutter web apps such as portfolios, and landing pages, this is more than enough. #flutterdev ๐Ÿ‘‰ Learn more: onlyflutter.com/how-to-host-...

To ensure that our code meets standards, is correctly formatted, and thoroughly tested, we often use CI/CD pipelines. However, this is not always necessary. If you prefer a simpler solution, you can use Git Hooks instead. #flutter #dart #flutterdev ๐Ÿ‘‰Learn more: onlyflutter.com/git-hooks-in...

Do not make this mistake when implementing modal bottom sheets in Flutter. Flutter has a ๐—•๐—ผ๐˜๐˜๐—ผ๐—บ๐—ฆ๐—ต๐—ฒ๐—ฒ๐˜ widget, but it should not be used with the ๐˜€๐—ต๐—ผ๐˜„๐— ๐—ผ๐—ฑ๐—ฎ๐—น๐—•๐—ผ๐˜๐˜๐—ผ๐—บ๐—ฆ๐—ต๐—ฒ๐—ฒ๐˜ function. #FlutterDev #Flutter Learn more about it here: onlyflutter.com/how-to-creat...

Save Data on the Device Using Shared Preferences in Flutter #flutterdev onlyflutter.com/save-data-on...

Manage Translation Files in Flutter Using BabelEdit BabelEdit saves me a lot of time, what tools do you use to manage all the translations? #flutterdev onlyflutter.com/manage-trans...

How to Cache Network Images in Flutter #flutterdev #flutter #dart onlyflutter.com/how-to-cache...

Finally finished the redesign of my Feed Reader application Your News. Also, decided to remove all the Ads in the application. ๐Ÿ‘‰ Check it out: play.google.com/store/apps/d... #flutterdev #android It took a while, but Iโ€™m planning to create a redesign guide with useful tips in the future!๐Ÿ’ก

Just updated the article: How to Add In-App Payments With RevenueCat in Flutter! Now includes a section on handling cancellations. #flutter #flutterdev #dart #revenuecat onlyflutter.com/how-to-add-i...

I am working on canceling subscriptions using RevenueCat in Flutter. Is this still the way to go? #flutterdev #flutter #dart #revenuecat

What are Streams in Flutter #flutterdev #flutter #dart onlyflutter.com/what-are-str...

New Hive Community Edition 2.10.0 is here! This release introduces one of the most requested features: increasing the maximum type ID from 223 to 65439. ๐Ÿš€ This will make it easier to manage large and complex object models. #flutterdev #flutter #dart ๐Ÿ‘‰Check it out: pub.dev/packages/hiv...

What started with implementing a new feature for the Your News application ended up in a complete redesign of the whole application, and I'm getting close to finishing it! #FlutterDev play.google.com/store/apps/d...

Ensure best practices in Dart & Flutter effortlessly with the very_good_analysis package. Used and tested daily by developers at Very Good Ventures, it enforces robust linting rules for high-quality code. #dart #flutter #flutterdev ๐Ÿ‘‰ Learn more about it: onlyflutter.com/improving-co...

Hive is a popular Flutter package that stores data locally on mobile devices; unfortunately, it is no longer maintained. However, there is a community version available that is very actively maintained. #flutter #flutterdev ๐Ÿ‘‰Learn more about it here: onlyflutter.com/how-to-add-a...

How to Create Tabs in Flutter #flutterdev #flutter onlyflutter.com/how-to-creat...

When you need to return multiple objects from functions in Dart, you might use Lists, Maps, Sets, or custom objects. An alternative and often simpler way to return multiple objects in Dart is by using records. #FlutterDev Learn more about records in Dart: onlyflutter.com/returning-mu...

Do not make these mistakes with modal bottom sheets in Flutter! #Flutter #FlutterDev Find out more: onlyflutter.com/how-to-creat...

How to Create Card Stacks in Flutter #Flutter #FlutterDev onlyflutter.com/how-to-creat...

Will start in 10minutes with my live stream refactoring the new #flutterdev sample compass app the way I would architect such an app. Will post the link in the reply to this post shortly

When starting new Flutter projects with the "flutter create project_name" command, you might find yourself needing to manually remove certain platform folders. Fortunately, there is a more efficient way to exclude platforms using the "flutter config" command. #Flutter #FlutterDev