New post on /r/flutterdev subreddit:
Giving back to the community - Scalable app in Flutter - 0 to 100.
Hello everyone,Quick background10+ years of Tech. Industry;8+ years of Mobile experience (5+ Android, 3+ Flutter);Specialising in MVP (minimal viable product) and POC (proof of concept) development;So far built ~20 Flutter apps;Taking care of full e2e development (backend, frontend, sever).
As for Flutter, my biggest app to date had 60+ models and 60+ pages, 40k+ lines of code.I've decided to share with everyone my years of experience with Flutter and how I build successful Apps for my clients. Hopefully it can be helpful for many starting up with Flutter and for others - there can be some new things to learn.Secretum started as a side project but evolved to more than that. One of the interesting aspects of the project is `encryption`. Lots of topics needs to be covered and I'll try to cover everything mentioned in `readme`.
If you'd like to see anything in particular - give me a shout!---------------------------------
GitHub of Secretum - https://github.com/deimantasa/secretum-mobileYou can easily run it on your own Firebase project.---------------------------------As for today, I have a quick product demo with overall walkthrough. With time, I'll be able to share more video walkthroughs and how-to's about it.Hope it'll be be helpful for you guys!Cheers
March 28, 2021 at 09:49AM by Deimantasa
https://ift.tt/3tSTDB0
Giving back to the community - Scalable app in Flutter - 0 to 100.
Hello everyone,Quick background10+ years of Tech. Industry;8+ years of Mobile experience (5+ Android, 3+ Flutter);Specialising in MVP (minimal viable product) and POC (proof of concept) development;So far built ~20 Flutter apps;Taking care of full e2e development (backend, frontend, sever).
As for Flutter, my biggest app to date had 60+ models and 60+ pages, 40k+ lines of code.I've decided to share with everyone my years of experience with Flutter and how I build successful Apps for my clients. Hopefully it can be helpful for many starting up with Flutter and for others - there can be some new things to learn.Secretum started as a side project but evolved to more than that. One of the interesting aspects of the project is `encryption`. Lots of topics needs to be covered and I'll try to cover everything mentioned in `readme`.
If you'd like to see anything in particular - give me a shout!---------------------------------
GitHub of Secretum - https://github.com/deimantasa/secretum-mobileYou can easily run it on your own Firebase project.---------------------------------As for today, I have a quick product demo with overall walkthrough. With time, I'll be able to share more video walkthroughs and how-to's about it.Hope it'll be be helpful for you guys!Cheers
March 28, 2021 at 09:49AM by Deimantasa
https://ift.tt/3tSTDB0
GitHub
GitHub - deimantasa/secretum-mobile
Contribute to deimantasa/secretum-mobile development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
FlutterForce — Week 114
https://ift.tt/3sHITFa
March 28, 2021 at 10:59AM by flutterist
https://ift.tt/3lZnNj5
FlutterForce — Week 114
https://ift.tt/3sHITFa
March 28, 2021 at 10:59AM by flutterist
https://ift.tt/3lZnNj5
Medium
FlutterForce — #Week 114
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Flutter UI Burger App - Best Tips
Flutter UI Burger App (Web, Tablet, Phone)Best Tips!https://youtu.be/eCIrTqCA1ro
March 28, 2021 at 10:56AM by MappOnTrack
https://ift.tt/2PEGOLy
Flutter UI Burger App - Best Tips
Flutter UI Burger App (Web, Tablet, Phone)Best Tips!https://youtu.be/eCIrTqCA1ro
March 28, 2021 at 10:56AM by MappOnTrack
https://ift.tt/2PEGOLy
YouTube
Best 7 Flutter Tips For Beginners
Flutter Best Tips and Tricks for any Flutter Developer. Best Practices, Widgets, Plugins, Tips and Tricks with Flutter will be deliver into this Video. In other words, in this In this video, we will show you the best 7 tips and tricks with Flutter. These…
New post on /r/flutterdev subreddit:
Navigator 2.0 for Authentication and Bootstrapping
Hi! I wrote a series of articles regarding the Navigator 2.0 API. I am hoping that the articles and the sample app with the source code on Github would help developers who have been suffering to understand the Navigator 2.0 API.The series starts with an introduction article in which declarative navigation API and the sample apps are explained with screen recording.In the second article, the Router widget and Pages API are introduced, and building a navigation stack according to the app state changes (ui interaction, back press) is explained.In the third article, authentication use case is added to the sample apps, and building the navigation stack according to the authentication state changes is explainedIn the fourth article, handling bootstrapping process with Navigator 2,0 API is explained.In the fifth article, parsing and restoring Web URLs with Navigator 2.0 API is explained.The source code for the sample apps is also included in the articles. (edited)
March 28, 2021 at 10:56AM by ulusoyapps
https://ift.tt/39mbVT8
Navigator 2.0 for Authentication and Bootstrapping
Hi! I wrote a series of articles regarding the Navigator 2.0 API. I am hoping that the articles and the sample app with the source code on Github would help developers who have been suffering to understand the Navigator 2.0 API.The series starts with an introduction article in which declarative navigation API and the sample apps are explained with screen recording.In the second article, the Router widget and Pages API are introduced, and building a navigation stack according to the app state changes (ui interaction, back press) is explained.In the third article, authentication use case is added to the sample apps, and building the navigation stack according to the authentication state changes is explainedIn the fourth article, handling bootstrapping process with Navigator 2,0 API is explained.In the fifth article, parsing and restoring Web URLs with Navigator 2.0 API is explained.The source code for the sample apps is also included in the articles. (edited)
March 28, 2021 at 10:56AM by ulusoyapps
https://ift.tt/39mbVT8
GitHub
Flutter-ShareWhatYouKnow/lib/002-navigator-2 at develop · ulusoyca/Flutter-ShareWhatYouKnow
Sample code for Flutter tutorials. Contribute to ulusoyca/Flutter-ShareWhatYouKnow development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Architecture libraries are bad. Change my view.
There seems to be a lot of discussion on what Architecture library to pick when starting a new project, whether its redux, bloc, provider, riverpod, etc.It scares me just to think I could have one single 3rd party plugin being the backbone of any project spread on every single class across the project. What if it goes bust and what is the point on having to learn about a specific plugin?I personally work with the bloc (pattern) but my logic classes don't inherit from any external packages. Sure I use plugins to help with some tasks like boilerplate generation and di, but they are easily replaceable by others achieving the same goal at any time. They just help me write less code. Why would you give up control to a library for your whole app anyway?
March 28, 2021 at 12:01PM by Alqueraf
https://ift.tt/3svQEhD
Architecture libraries are bad. Change my view.
There seems to be a lot of discussion on what Architecture library to pick when starting a new project, whether its redux, bloc, provider, riverpod, etc.It scares me just to think I could have one single 3rd party plugin being the backbone of any project spread on every single class across the project. What if it goes bust and what is the point on having to learn about a specific plugin?I personally work with the bloc (pattern) but my logic classes don't inherit from any external packages. Sure I use plugins to help with some tasks like boilerplate generation and di, but they are easily replaceable by others achieving the same goal at any time. They just help me write less code. Why would you give up control to a library for your whole app anyway?
March 28, 2021 at 12:01PM by Alqueraf
https://ift.tt/3svQEhD
reddit
Architecture libraries are bad. Change my view.
There seems to be a lot of discussion on what Architecture library to pick when starting a new project, whether its redux, bloc, provider,...
New post on /r/flutterdev subreddit:
[For Hire] Flutter Dev
Looking for a flutter developer to create a small project around developing an application which is in a crux the Uber-isation of Ambulances. Will share the prototype images for the application must look.Those interested DM.
March 28, 2021 at 12:31PM by ComprehensiveCup7916
https://ift.tt/3m0hX15
[For Hire] Flutter Dev
Looking for a flutter developer to create a small project around developing an application which is in a crux the Uber-isation of Ambulances. Will share the prototype images for the application must look.Those interested DM.
March 28, 2021 at 12:31PM by ComprehensiveCup7916
https://ift.tt/3m0hX15
reddit
[For Hire] Flutter Dev
Looking for a flutter developer to create a small project around developing an application which is in a crux the Uber-isation of Ambulances. Will...
New post on /r/flutterdev subreddit:
How important is the lack of broadcast functionality in flutter_bloc?
I'm just reading about flutter_bloc and my initial impression is that is seems rather easier to implement than using rxdart.But I'm concerned about the one in/one out model it enforces. Why, in practice, are developers not finding this a problem? If I have two or more ui elements dependant upon the same change in data how does this get fanned out in flutter_bloc?
March 28, 2021 at 12:27PM by IanWorthington
https://ift.tt/3cvIbFw
How important is the lack of broadcast functionality in flutter_bloc?
I'm just reading about flutter_bloc and my initial impression is that is seems rather easier to implement than using rxdart.But I'm concerned about the one in/one out model it enforces. Why, in practice, are developers not finding this a problem? If I have two or more ui elements dependant upon the same change in data how does this get fanned out in flutter_bloc?
March 28, 2021 at 12:27PM by IanWorthington
https://ift.tt/3cvIbFw
reddit
How important is the lack of broadcast functionality in flutter_bloc?
I'm just reading about flutter\_bloc and my initial impression is that is seems rather easier to implement than using rxdart. But I'm concerned...
New post on /r/flutterdev subreddit:
I published my first flutter package for widget
Hi all. I published my first flutter package. It is simple widget that shows chat box message on tap event. Hope this could be helpful for anyone who needs that feature.flutter chatty widget
March 28, 2021 at 01:27PM by hyobbb
https://ift.tt/3tT8vPQ
I published my first flutter package for widget
Hi all. I published my first flutter package. It is simple widget that shows chat box message on tap event. Hope this could be helpful for anyone who needs that feature.flutter chatty widget
March 28, 2021 at 01:27PM by hyobbb
https://ift.tt/3tT8vPQ
Dart packages
chatty_widget | Flutter Package
A Flutter widget that shows message on tap.
New post on /r/flutterdev subreddit:
2 Flying Dots Progress Indicator
https://ift.tt/3w7aimb
March 28, 2021 at 04:43PM by tledrag
https://ift.tt/3ry7FpY
2 Flying Dots Progress Indicator
https://ift.tt/3w7aimb
March 28, 2021 at 04:43PM by tledrag
https://ift.tt/3ry7FpY
TL Dev Tech
Flutter Progress Indicator: 2 Flying Dots | TL Dev Tech
Two flying dots fly at opposite directions.
New post on /r/flutterdev subreddit:
Flutter Admin panel
Hello world!I'm creating an app for my local shop.. and I have no idea about how to create my admin panel.. ahy help please ?!
March 28, 2021 at 04:06PM by goldenone111
https://ift.tt/39ks4Zi
Flutter Admin panel
Hello world!I'm creating an app for my local shop.. and I have no idea about how to create my admin panel.. ahy help please ?!
March 28, 2021 at 04:06PM by goldenone111
https://ift.tt/39ks4Zi
reddit
Flutter Admin panel
Hello world! I'm creating an app for my local shop.. and I have no idea about how to create my admin panel.. ahy help please ?!
New post on Flutter Dev Google group:
VerificationFailed(Firebase Auth)
Hello, I am about to publish my application, but I am getting an error like the one below. Before uploading to Google Play ... I render with "flutter build apk --release" for testing on my own device. I also add the SHA-1 key in the key I created with keystore, and add the firebase and install
March 28, 2021 at 05:11PM by Muti
https://ift.tt/3ddhEfo
VerificationFailed(Firebase Auth)
Hello, I am about to publish my application, but I am getting an error like the one below. Before uploading to Google Play ... I render with "flutter build apk --release" for testing on my own device. I also add the SHA-1 key in the key I created with keystore, and add the firebase and install
March 28, 2021 at 05:11PM by Muti
https://ift.tt/3ddhEfo
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Adding custom ads in Flutter (not with Admob)
What is the best way to implement custom ads management in Flutter apps?
The thing is I don't want to use admob and stick with automatic ads. I want to create partnerships with businesses in my hometown where I can embed their ads in my app. How would you do it?
March 28, 2021 at 05:51PM by Atef_S
https://ift.tt/2O4XBau
Adding custom ads in Flutter (not with Admob)
What is the best way to implement custom ads management in Flutter apps?
The thing is I don't want to use admob and stick with automatic ads. I want to create partnerships with businesses in my hometown where I can embed their ads in my app. How would you do it?
March 28, 2021 at 05:51PM by Atef_S
https://ift.tt/2O4XBau
reddit
Adding custom ads in Flutter (not with Admob)
What is the best way to implement custom ads management in Flutter apps? The thing is I don't want to use admob and stick with automatic ads. I...
New post on /r/flutterdev subreddit:
Les bases de dart avant FLutter
Hello Les amis !Apprendre les bases de dart : https://www.youtube.com/watch?v=iNoPzfxRpuY
March 28, 2021 at 08:54PM by ofceab_obed
https://ift.tt/3whBtuO
Les bases de dart avant FLutter
Hello Les amis !Apprendre les bases de dart : https://www.youtube.com/watch?v=iNoPzfxRpuY
March 28, 2021 at 08:54PM by ofceab_obed
https://ift.tt/3whBtuO
YouTube
Dart avant Flutter: Les structures de controles et les boucles
Dans cette videos nous apprenons ensemble le fonctionnement des boucles(while et for) ainsi que les structures de controles (if else)Retrouver nous sur teleg...
New post on /r/flutterdev subreddit:
Flutter Web examples or tutorials
Hi r/FlutterDev,Do you know of websites built with Flutter 2 ?Do you know of Flutter 2 Web tutorials ? Can't seem to find much on YouTube.Thanks!
March 28, 2021 at 08:06PM by joris_limonier
https://ift.tt/3syu9Zj
Flutter Web examples or tutorials
Hi r/FlutterDev,Do you know of websites built with Flutter 2 ?Do you know of Flutter 2 Web tutorials ? Can't seem to find much on YouTube.Thanks!
March 28, 2021 at 08:06PM by joris_limonier
https://ift.tt/3syu9Zj
reddit
Flutter Web examples or tutorials
Hi r/FlutterDev, * Do you know of websites built with Flutter 2 ? * Do you know of Flutter 2 Web tutorials ? Can't seem to find much on...
New post on Flutter Dev Google group:
Flutter run failing in M1 MacBook Air
Hello, I have build an application using flutter on a linux based laptop but now I have shifted to M1 Mac. That same project has stopped working in this device. When I run the flutter run command, I get an error. Error: * flutter run* *Downloading ios tools...
March 28, 2021 at 09:30PM by Anurag Tyagi
https://ift.tt/2PhzupB
Flutter run failing in M1 MacBook Air
Hello, I have build an application using flutter on a linux based laptop but now I have shifted to M1 Mac. That same project has stopped working in this device. When I run the flutter run command, I get an error. Error: * flutter run* *Downloading ios tools...
March 28, 2021 at 09:30PM by Anurag Tyagi
https://ift.tt/2PhzupB
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Can anyone help me understanding Architecture.
Whats the relationship between Repository, Data-Source and Services. I’m trying to make sense of this architecture my job wants me to understand.According to this architecture UI only interact with repo.Repo interact with Datasource. Data source will decide whether data will come from local or remote.Service interact with the outer world entities. Like fetching data from remote server.Architecture
March 28, 2021 at 11:01PM by anothr_anon_user
https://ift.tt/3dcCRGc
Can anyone help me understanding Architecture.
Whats the relationship between Repository, Data-Source and Services. I’m trying to make sense of this architecture my job wants me to understand.According to this architecture UI only interact with repo.Repo interact with Datasource. Data source will decide whether data will come from local or remote.Service interact with the outer world entities. Like fetching data from remote server.Architecture
March 28, 2021 at 11:01PM by anothr_anon_user
https://ift.tt/3dcCRGc
Imgur
Architecture
Post with 27 views. Architecture
New post on /r/flutterdev subreddit:
Flutter Fr Space
Salut les gars!Nous venons de créer une chaine qui donnera des cours et tutoriels sur Flutter mais en français ceci sera un bon départ pour la communauté français si juste on s'y met tous en supportant la chaine par nos abonnements, likes et commentaires. Ci dessous le lien de la chaine !https://www.youtube.com/channel/UC2jf4JoAgGR4eaFYlOFaYUA
March 28, 2021 at 10:33PM by ofceab_obed
https://ift.tt/3m0Ak5R
Flutter Fr Space
Salut les gars!Nous venons de créer une chaine qui donnera des cours et tutoriels sur Flutter mais en français ceci sera un bon départ pour la communauté français si juste on s'y met tous en supportant la chaine par nos abonnements, likes et commentaires. Ci dessous le lien de la chaine !https://www.youtube.com/channel/UC2jf4JoAgGR4eaFYlOFaYUA
March 28, 2021 at 10:33PM by ofceab_obed
https://ift.tt/3m0Ak5R
New post on /r/flutterdev subreddit:
Flutter Tutorial - Autofill Services In 5 Minutes - Android & iOS (Johannes Milke)
https://www.youtube.com/watch?v=v8T4fnrQCf0
March 28, 2021 at 11:36PM by JohannesMilke
https://ift.tt/3cxvL01
Flutter Tutorial - Autofill Services In 5 Minutes - Android & iOS (Johannes Milke)
https://www.youtube.com/watch?v=v8T4fnrQCf0
March 28, 2021 at 11:36PM by JohannesMilke
https://ift.tt/3cxvL01
YouTube
Flutter Tutorial - Autocomplete TextField & Autofill Services | Android, iOS & Web
Create Autocomplete TextField with Autofill Services in Flutter. Simply autofill TextFields by autocomplete name, autocomplete email, autocomplete address, autocomplete username, autocomplete password, autocomplete payment methods, etc., and combine multiple…
New post on /r/flutterdev subreddit:
Become a better designer by developing Flutter Apps
https://ift.tt/3w42NfR
March 29, 2021 at 08:38AM by cheerfulboy
https://ift.tt/3ctYh2k
Become a better designer by developing Flutter Apps
https://ift.tt/3w42NfR
March 29, 2021 at 08:38AM by cheerfulboy
https://ift.tt/3ctYh2k
Flutter and Other Experiments
Become a better designer by developing Flutter Apps
In this article, I want to deepen a talk related to Flutter Engage held by @filiphracek, where he presents some ideas for developing beautiful Flutter applications.
We all know that the concept of beauty is subjective, but some tricks can be used to ...
We all know that the concept of beauty is subjective, but some tricks can be used to ...
New post on /r/flutterdev subreddit:
Product Owner's Perspective on Flutter with Tom Arra (Very Good Ventures, BMW) - Flutter 101 Podcast
I talked to Tom Arra. Tom is a Program Manager at Very Good Ventures. Previously, he worked as Product Owner at BMW, Microsoft, and Nokia. We talked about his experience with Flutter as a Product Owner.Listen to the episode here https://flutter101.dev/episodes/the-product-owners-perspective-on-flutter-with-tom-arraYou can also just search for "Flutter 101 Podcast" in your favorite podcast app and subscribe. On https://flutter101.dev/ you'll find links to podcast listings, and you can listen to previous episodes.First, we briefly discussed how Tom switched from Software Development to Product Ownership and Program Management. Then, Tom shared his experience with Flutter at BMW and Very Good Ventures.We learned how Flutter got its way into BMW, and how the company managed to adopt the technology. Tom's and BMW's experience with Flutter was positive: most developers could focus on writing Dart code, ship apps for multiple platforms while maintaining app quality, performance and delivering value to customers on time. Flutter also helped with working with designers and delivering beautiful apps on both iOS and Android.We talked about open-source at bigger organizations, as well as a couple of examples from VGV's open-source projects. We talked about how software quality matters and why the 100% test coverage can improve stability and prevent regressions.
March 29, 2021 at 08:14AM by serial_dev
https://ift.tt/3ry0HBg
Product Owner's Perspective on Flutter with Tom Arra (Very Good Ventures, BMW) - Flutter 101 Podcast
I talked to Tom Arra. Tom is a Program Manager at Very Good Ventures. Previously, he worked as Product Owner at BMW, Microsoft, and Nokia. We talked about his experience with Flutter as a Product Owner.Listen to the episode here https://flutter101.dev/episodes/the-product-owners-perspective-on-flutter-with-tom-arraYou can also just search for "Flutter 101 Podcast" in your favorite podcast app and subscribe. On https://flutter101.dev/ you'll find links to podcast listings, and you can listen to previous episodes.First, we briefly discussed how Tom switched from Software Development to Product Ownership and Program Management. Then, Tom shared his experience with Flutter at BMW and Very Good Ventures.We learned how Flutter got its way into BMW, and how the company managed to adopt the technology. Tom's and BMW's experience with Flutter was positive: most developers could focus on writing Dart code, ship apps for multiple platforms while maintaining app quality, performance and delivering value to customers on time. Flutter also helped with working with designers and delivering beautiful apps on both iOS and Android.We talked about open-source at bigger organizations, as well as a couple of examples from VGV's open-source projects. We talked about how software quality matters and why the 100% test coverage can improve stability and prevent regressions.
March 29, 2021 at 08:14AM by serial_dev
https://ift.tt/3ry0HBg
Flutter 101 Podcast
Tom Arra is a Program Manager at Very Good Ventures. Previously, he worked as Product Owner at BMW, Microsoft, and Nokia. We talked about his experience with Flutter as a Product Owner.