New post on /r/flutterdev subreddit:
Isolates for repeating background work
Everybody knows there's the nice compute function which is good for performing 1-time heavy operations in the background (like parsing large JSON).But what about some repeating background work?
For example, I have a large set of data (10K items) and I want to run fuzzy searches to select specific items from time to time. Calling
October 24, 2021 at 09:19AM by submergedmole
https://ift.tt/3nrA5lL
Isolates for repeating background work
Everybody knows there's the nice compute function which is good for performing 1-time heavy operations in the background (like parsing large JSON).But what about some repeating background work?
For example, I have a large set of data (10K items) and I want to run fuzzy searches to select specific items from time to time. Calling
compute
each time would be a bad idea because it would mean copying the 10K items again and again.I couldn't find a good solution so I made a class encapsulating an Isolate, which:Sends the 10K items to the Isolate on the startKeeps the Isolate runningWhen the user performs fuzzy search, the requested String is sent to the IsolateThe background Isolate then performs a search and returns results back to the main IsolateIt felt a bit strange to manually use all the SendPort
and ReceivePort
, I felt like there must be an existing solution to perform repeating actions on single large data set, but I couldn't find any library or any function in the SDK.Are there any?October 24, 2021 at 09:19AM by submergedmole
https://ift.tt/3nrA5lL
docs.flutter.dev
Parse JSON in the background
How to perform a task in the background.
New post on /r/flutterdev subreddit:
Who knows FinTech startups making apps with Flutter ?
I am wandering what kind of inApp protection or RASP they use if any to avoid cloning and assets & key protection.
October 24, 2021 at 01:04PM by sergeychuk
https://ift.tt/3vEvkJ2
Who knows FinTech startups making apps with Flutter ?
I am wandering what kind of inApp protection or RASP they use if any to avoid cloning and assets & key protection.
October 24, 2021 at 01:04PM by sergeychuk
https://ift.tt/3vEvkJ2
reddit
Who knows FinTech startups making apps with Flutter ?
I am wandering what kind of inApp protection or RASP they use if any to avoid cloning and assets & key protection.
New post on /r/flutterdev subreddit:
Cache API Integration with HydratedBLoC in Flutter
Cache API Integration with HydratedBLoC in FlutterSource Codes IncludedMedium Story Link: https://medium.com/@CodingWithImran/cache-api-integration-with-hydratedbloc-in-flutter-fc51fae29b1f
October 24, 2021 at 01:03PM by imran_sefat
https://ift.tt/3b2apX0
Cache API Integration with HydratedBLoC in Flutter
Cache API Integration with HydratedBLoC in FlutterSource Codes IncludedMedium Story Link: https://medium.com/@CodingWithImran/cache-api-integration-with-hydratedbloc-in-flutter-fc51fae29b1f
October 24, 2021 at 01:03PM by imran_sefat
https://ift.tt/3b2apX0
Medium
Cache API Integration with HydratedBLoC in Flutter
Source Codes Included
New post on /r/flutterdev subreddit:
Do you know about the #URL #Launcher official #package in #Flutter? 💙 It allows you to open telephone, email, website URLs in the host operating system.
https://ift.tt/3Bc8lWO
October 24, 2021 at 04:09PM by VandadNahavandipoor
https://ift.tt/3jQSbwz
Do you know about the #URL #Launcher official #package in #Flutter? 💙 It allows you to open telephone, email, website URLs in the host operating system.
https://ift.tt/3Bc8lWO
October 24, 2021 at 04:09PM by VandadNahavandipoor
https://ift.tt/3jQSbwz
New post on /r/flutterdev subreddit:
Test RootWidget Wrapping For Goldens and Widget testing
Some hints if your impatient as my Test Wrapper article is this afternoon.OnGenerateRoute cannot be in it, you will mirror your MyApp Class as a text fixture without that.restorationScopeID cannot be set.The widge under test goes as a parameter in the home slot of the AppWIdget(Material or Cupertino). And, wrap the widget under test in a material container.To avoid having to write tester extension to get a way to insert the root widget as a wrapper around the widget under test use ebay's golden toolkit.Since all of us use builders to supply theme changes make sure to use tester.runAsync to pump the widget only as the expect stuff will go outside of that code block.Its not specifically mention in Flutter Docs under Goldens.happy App designing and coding!
October 24, 2021 at 04:05PM by fredgrott
https://ift.tt/3GgXuih
Test RootWidget Wrapping For Goldens and Widget testing
Some hints if your impatient as my Test Wrapper article is this afternoon.OnGenerateRoute cannot be in it, you will mirror your MyApp Class as a text fixture without that.restorationScopeID cannot be set.The widge under test goes as a parameter in the home slot of the AppWIdget(Material or Cupertino). And, wrap the widget under test in a material container.To avoid having to write tester extension to get a way to insert the root widget as a wrapper around the widget under test use ebay's golden toolkit.Since all of us use builders to supply theme changes make sure to use tester.runAsync to pump the widget only as the expect stuff will go outside of that code block.Its not specifically mention in Flutter Docs under Goldens.happy App designing and coding!
October 24, 2021 at 04:05PM by fredgrott
https://ift.tt/3GgXuih
reddit
Test RootWidget Wrapping For Goldens and Widget testing
Some hints if your impatient as my Test Wrapper article is this afternoon. 1. OnGenerateRoute cannot be in it, you will mirror your...
New post on /r/flutterdev subreddit:
Boilerplate project using RiverPod, Dio, Auto_Route
I try to maintain a boilerplate project for my starter project, the first version of this I wrote back in 2019 with Bloc now I rewrote my Boilerplate but with RiverPod this time. It comes with lots of other improvements as well. Though featurewise it's very barebone but can help with project structure and others. here's the link: https://github.com/SimpleBoilerplates/Flutter
October 24, 2021 at 03:37PM by sadmansamee
https://ift.tt/3vDvGQ6
Boilerplate project using RiverPod, Dio, Auto_Route
I try to maintain a boilerplate project for my starter project, the first version of this I wrote back in 2019 with Bloc now I rewrote my Boilerplate but with RiverPod this time. It comes with lots of other improvements as well. Though featurewise it's very barebone but can help with project structure and others. here's the link: https://github.com/SimpleBoilerplates/Flutter
October 24, 2021 at 03:37PM by sadmansamee
https://ift.tt/3vDvGQ6
GitHub
GitHub - SimpleBoilerplates/Flutter: A boilerplate project for Flutter using RiverPod, Dio, go_router, Freezed and generated with…
A boilerplate project for Flutter using RiverPod, Dio, go_router, Freezed and generated with very_good_cli - SimpleBoilerplates/Flutter
New post on /r/flutterdev subreddit:
Should I learn Provider before learning Riverpod?
I was watching the Dev fest session where the speaker mentioned about Riverpod being a successor of Provider. Is it necessary to learn Provider before starting with Riverpod or can I start off straight up with Riverpod
October 24, 2021 at 03:19PM by Vdx__
https://ift.tt/3b7ahpe
Should I learn Provider before learning Riverpod?
I was watching the Dev fest session where the speaker mentioned about Riverpod being a successor of Provider. Is it necessary to learn Provider before starting with Riverpod or can I start off straight up with Riverpod
October 24, 2021 at 03:19PM by Vdx__
https://ift.tt/3b7ahpe
reddit
Should I learn Provider before learning Riverpod?
I was watching the Dev fest session where the speaker mentioned about Riverpod being a successor of Provider. Is it necessary to learn Provider...
New post on /r/flutterdev subreddit:
Flutter Widget Unit Test Wrappers
https://ift.tt/2Zp1qNk
October 24, 2021 at 05:34PM by fredgrott
https://ift.tt/3vJ0gIm
Flutter Widget Unit Test Wrappers
https://ift.tt/2Zp1qNk
October 24, 2021 at 05:34PM by fredgrott
https://ift.tt/3vJ0gIm
Medium
Flutter Widget Unit Test Wrappers
Flutter test and goldens testing does not run a full flutter app. Instead, the Flutter engine is initialized; then we pump a supplied…
New post on /r/flutterdev subreddit:
Series of articles about building an app in Flutter and making $$ with it
Hi guys,I'm writing about my own experience of building a Flutter app from idea to a finished product. I'll be sharing all of the knowledge that I acquire during the process like design, development, deployment, marketing, and so on. Here are the first two articles:https://nikolaymiroshnychenko.medium.com/the-app-experiment-01-what-im-planning-to-build-d47e5e95f7b0https://nikolaymiroshnychenko.medium.com/market-research-and-looking-for-a-designer-the-app-experiment-02-f386e656c22fI'll be glad to hear the feedback from you guys. I'm open to any ideas and suggestions :)
October 24, 2021 at 05:33PM by Exact_Put4263
https://ift.tt/3juDSNG
Series of articles about building an app in Flutter and making $$ with it
Hi guys,I'm writing about my own experience of building a Flutter app from idea to a finished product. I'll be sharing all of the knowledge that I acquire during the process like design, development, deployment, marketing, and so on. Here are the first two articles:https://nikolaymiroshnychenko.medium.com/the-app-experiment-01-what-im-planning-to-build-d47e5e95f7b0https://nikolaymiroshnychenko.medium.com/market-research-and-looking-for-a-designer-the-app-experiment-02-f386e656c22fI'll be glad to hear the feedback from you guys. I'm open to any ideas and suggestions :)
October 24, 2021 at 05:33PM by Exact_Put4263
https://ift.tt/3juDSNG
Medium
The app experiment: — 01. What I’m planning to build.
The experiment
New post on /r/flutterdev subreddit:
Flutter->GraphQL->gRPC/golang
I’m a new flutter dev coming from React/React Native and I’m used to consuming apis from graphql.Is this a good stack to use on flutter? Or is there something “better”?
October 24, 2021 at 06:28PM by Kanotaur
https://ift.tt/3Cb5Fdz
Flutter->GraphQL->gRPC/golang
I’m a new flutter dev coming from React/React Native and I’m used to consuming apis from graphql.Is this a good stack to use on flutter? Or is there something “better”?
October 24, 2021 at 06:28PM by Kanotaur
https://ift.tt/3Cb5Fdz
reddit
Flutter->GraphQL->gRPC/golang
I’m a new flutter dev coming from React/React Native and I’m used to consuming apis from graphql. Is this a good stack to use on flutter? Or is...
New post on /r/flutterdev subreddit:
Theseus Navigator version 0.0.7 is available
Theseus Navigator package is updated to version 0.0.7.It includes:Support redirections80%+ API has dartdocDemo app contains various navigation casesTheseus Navigator Demo
October 24, 2021 at 08:06PM by echedev
https://ift.tt/3Giem8f
Theseus Navigator version 0.0.7 is available
Theseus Navigator package is updated to version 0.0.7.It includes:Support redirections80%+ API has dartdocDemo app contains various navigation casesTheseus Navigator Demo
October 24, 2021 at 08:06PM by echedev
https://ift.tt/3Giem8f
Dart packages
theseus_navigator | Flutter package
Theseus Navigator is based on Navigator 2.0 / Router and offers declarative navigation scheme, easy API, supports deeplinks, nested navigators and more.
New post on /r/flutterdev subreddit:
Salary Negotiation Advice Wanted
I just finished one year at a company and am about to have a salary negotiation/review and wanted to know if anyone has any advice.
I started at $70,000 based on experience with Android/software development but no Flutter experience so it was negotiated as kind of a jr/medium experience dev position where I'd be working with/under the main dev. In the first year I've become the main (and sole) developer for this app and think I've done a good job based on feedback from the higher ups.
Can anyone give me some insights into their salary as a Flutter and/or how to justify a somewhat large salary increase (80-85k)? My thought process is that I've taken on a more significant role and things have gone really well so my salary should be kind of 'reset' rather than just given a bump up.
Any advice would be appreciated. Cheers.
October 24, 2021 at 10:03PM by user_question
https://ift.tt/3ErqnXt
Salary Negotiation Advice Wanted
I just finished one year at a company and am about to have a salary negotiation/review and wanted to know if anyone has any advice.
I started at $70,000 based on experience with Android/software development but no Flutter experience so it was negotiated as kind of a jr/medium experience dev position where I'd be working with/under the main dev. In the first year I've become the main (and sole) developer for this app and think I've done a good job based on feedback from the higher ups.
Can anyone give me some insights into their salary as a Flutter and/or how to justify a somewhat large salary increase (80-85k)? My thought process is that I've taken on a more significant role and things have gone really well so my salary should be kind of 'reset' rather than just given a bump up.
Any advice would be appreciated. Cheers.
October 24, 2021 at 10:03PM by user_question
https://ift.tt/3ErqnXt
reddit
Salary Negotiation Advice Wanted
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Do you know any published iOS game that is made with flame and flutter ?
https://ift.tt/2U9qqCR
October 24, 2021 at 09:29PM by bouraine
https://ift.tt/3b2Xi7Y
Do you know any published iOS game that is made with flame and flutter ?
https://ift.tt/2U9qqCR
October 24, 2021 at 09:29PM by bouraine
https://ift.tt/3b2Xi7Y
New post on /r/flutterdev subreddit:
Style Development Log 1 : Exception Handling
https://ift.tt/3EgsmO9
October 25, 2021 at 12:06AM by congolomera
https://ift.tt/3EgjAjd
Style Development Log 1 : Exception Handling
https://ift.tt/3EgsmO9
October 25, 2021 at 12:06AM by congolomera
https://ift.tt/3EgjAjd
Medium
Style Development Log 1 : Exception Handling
I will share the developments related to the style backend framework, which I have announced in the article, in a series. If you have no…
New post on /r/flutterdev subreddit:
Video Hosting App
I'm working on an app, one of the major features of it will be the ability for users to upload and stream short videos, in a similar way to TikTok. I'm trying to find a good solution for video hosting, but it's proving much tougher than I originally thought.Vimeo seems reliant on an SDK that isn't available to Flutter, and using something like Firebase Cloud Storage seems like you basically have to reverse engineer Youtube in order to make it work.Has anyone created an app where users can upload and stream other user's videos? What technologies did you use, or what do you recommend?
October 25, 2021 at 01:58AM by smeeze897
https://ift.tt/3GeCkkZ
Video Hosting App
I'm working on an app, one of the major features of it will be the ability for users to upload and stream short videos, in a similar way to TikTok. I'm trying to find a good solution for video hosting, but it's proving much tougher than I originally thought.Vimeo seems reliant on an SDK that isn't available to Flutter, and using something like Firebase Cloud Storage seems like you basically have to reverse engineer Youtube in order to make it work.Has anyone created an app where users can upload and stream other user's videos? What technologies did you use, or what do you recommend?
October 25, 2021 at 01:58AM by smeeze897
https://ift.tt/3GeCkkZ
reddit
Video Hosting App
I'm working on an app, one of the major features of it will be the ability for users to upload and stream short videos, in a similar way to...
New post on /r/flutterdev subreddit:
Must I upgrade to Flutter 2 ever
Can I not just stay on version 1.X?
October 25, 2021 at 06:21AM by dutrasi
https://ift.tt/3Gf1Gz0
Must I upgrade to Flutter 2 ever
Can I not just stay on version 1.X?
October 25, 2021 at 06:21AM by dutrasi
https://ift.tt/3Gf1Gz0
New post on /r/flutterdev subreddit:
FlutterForce — Week 142
https://ift.tt/3Gjoc9V
October 25, 2021 at 08:07AM by flutterist
https://ift.tt/3CcQOzg
FlutterForce — Week 142
https://ift.tt/3Gjoc9V
October 25, 2021 at 08:07AM by flutterist
https://ift.tt/3CcQOzg
Medium
FlutterForce — #Week 142
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Created a Dart/Flutter community on quora.
I have made a dart/flutter community on quora. Which will provide you with tips and tricks for the dart programming language.For People who want to contribute: https://dartfluttertipsandtricks.quora.com/?invite_code=Xvo22G8rcyrStbEp47j0For People who want to just follow: https://dartfluttertipsandtricks.quora.com/?invite_code=nTZS4ujcwEN5iPtRjxOvRegards
October 25, 2021 at 11:38AM by fmvt
https://ift.tt/3EbjdpY
Created a Dart/Flutter community on quora.
I have made a dart/flutter community on quora. Which will provide you with tips and tricks for the dart programming language.For People who want to contribute: https://dartfluttertipsandtricks.quora.com/?invite_code=Xvo22G8rcyrStbEp47j0For People who want to just follow: https://dartfluttertipsandtricks.quora.com/?invite_code=nTZS4ujcwEN5iPtRjxOvRegards
October 25, 2021 at 11:38AM by fmvt
https://ift.tt/3EbjdpY
Quora
Dart/Flutter Tips and Tricks
Easy tricks and best practices for dart language.
New post on /r/flutterdev subreddit:
Flutter Croissants 🥐 #09: Multidex on Android & Flutter will soon be enabled automatically, 🌼 A new file system for Fuchsia, ✂️ Did you know, you can remove unused icons in your app? …
https://ift.tt/3pI3Wc2
October 25, 2021 at 02:13PM by g123k
https://ift.tt/3mdHENy
Flutter Croissants 🥐 #09: Multidex on Android & Flutter will soon be enabled automatically, 🌼 A new file system for Fuchsia, ✂️ Did you know, you can remove unused icons in your app? …
https://ift.tt/3pI3Wc2
October 25, 2021 at 02:13PM by g123k
https://ift.tt/3mdHENy
Flutter-Croissants
Issue #09 (01/10/2023) - Flutter Croissants
Flutter Croissants #09: all Flutter in your mailbox!
New post on /r/flutterdev subreddit:
Missing Flutter Best Practice, The Page Object Model Test Pattern
https://ift.tt/3jx1IZa
October 25, 2021 at 02:05PM by fredgrott
https://ift.tt/3Bg8cSi
Missing Flutter Best Practice, The Page Object Model Test Pattern
https://ift.tt/3jx1IZa
October 25, 2021 at 02:05PM by fredgrott
https://ift.tt/3Bg8cSi
Medium
Missing Flutter Best Practice, The Page Object Model Test Pattern
Would be nice if this test best practice called POM was in the Flutter Skeleton Template, since the template is supposed to showcase…
New post on /r/flutterdev subreddit:
Why do you need Mobile Apps For Your Business? - Flutter Agency
https://ift.tt/2ZhQpx0
October 25, 2021 at 01:49PM by lil_dragplix
https://ift.tt/3CeJl2z
Why do you need Mobile Apps For Your Business? - Flutter Agency
https://ift.tt/2ZhQpx0
October 25, 2021 at 01:49PM by lil_dragplix
https://ift.tt/3CeJl2z
Flutter Agency - Mobile App Designing, Development & Consulting
Why do you need Mobile Apps For Your Business? - Flutter Agency
Mobile phones are enhancing an integral part of our lives. And so are the mobile apps for your business that we apply for almost every activity. So, in this article, we will see why do you need Mobile Apps For Your Business. Why do you need Mobile Apps For…