New post on /r/flutterdev subreddit:
Flutter State Management With Provider
Hi guys. I published a simplified approach to Flutter state management using provider. Do let me know what you think.Link to post
September 27, 2021 at 03:53PM by joshuaerinosho
https://ift.tt/3ANIKEi
Flutter State Management With Provider
Hi guys. I published a simplified approach to Flutter state management using provider. Do let me know what you think.Link to post
September 27, 2021 at 03:53PM by joshuaerinosho
https://ift.tt/3ANIKEi
Joshua Erinosho
Flutter State Management With Provider
A simple approach to Flutter state management with provider
New post on /r/flutterdev subreddit:
Newsletter Flutter Croissants 🥐 - #05 - Dart's tear-off constructors, AngularDart finally switches to null safety, An official server-driven UI solution for Flutter? …
https://ift.tt/3iaP6Xk
September 27, 2021 at 03:42PM by g123k
https://ift.tt/3ue4WFj
Newsletter Flutter Croissants 🥐 - #05 - Dart's tear-off constructors, AngularDart finally switches to null safety, An official server-driven UI solution for Flutter? …
https://ift.tt/3iaP6Xk
September 27, 2021 at 03:42PM by g123k
https://ift.tt/3ue4WFj
New tweet from FlutterDev:
🗺📲 uniGO — the navigation app built with Flutter. Designed by a Google Developer Student Club chapter in Vietnam, Da Nang University of Technology, uniGO makes it easier for users to locate classrooms, buildings, departments and more. Try it out 👉 https://t.co/mo0cWwsFbX https://t.co/vQ5OnopdlF— Flutter (@FlutterDev) Sep 27, 2021
September 27, 2021 at 06:00PM
https://twitter.com/FlutterDev/status/1442519424876040196
🗺📲 uniGO — the navigation app built with Flutter. Designed by a Google Developer Student Club chapter in Vietnam, Da Nang University of Technology, uniGO makes it easier for users to locate classrooms, buildings, departments and more. Try it out 👉 https://t.co/mo0cWwsFbX https://t.co/vQ5OnopdlF— Flutter (@FlutterDev) Sep 27, 2021
September 27, 2021 at 06:00PM
https://twitter.com/FlutterDev/status/1442519424876040196
unigo.pro
uniGO - sản phẩm dành cho sinh viên các trường Đại Học
uniGO là sản phẩm được phát triển bởi Developer Student Clubs giúp người dùng tra cứu thông tin, địa điểm chính xác của các phòng học dễ dàng hơn
New post on /r/flutterdev subreddit:
Did you try Flutter web for promotion purposes on your landing page?
https://www.youtube.com/watch?v=aCHmm8KRbpw
September 27, 2021 at 06:45PM by kubenqpl
https://ift.tt/3CRvMpW
Did you try Flutter web for promotion purposes on your landing page?
https://www.youtube.com/watch?v=aCHmm8KRbpw
September 27, 2021 at 06:45PM by kubenqpl
https://ift.tt/3CRvMpW
YouTube
How To Share Flutter Apps In Browser - 3 Easy Steps
Meet FlutterHost - easy hosting for Flutter apps. Now you can upload your Flutter project and share it with clients, friends or team directly in browser.
👉 For more information, go to https://flutterhost.io
Create a free account today on https://app.f…
👉 For more information, go to https://flutterhost.io
Create a free account today on https://app.f…
New post on /r/flutterdev subreddit:
Cross-platform does not mean single codebase.
Good morning fellow Flutterlings! Wait, is that a thing? We have Gophers in Go and Rustaceans in Rust... What do we call a Flutter enthusiast? Maybe a Flutturion? Anyways, I digress.For the past month I’ve been learning Flutter and Dart and I’ve been having a blast. My background is primarily Rust and Go on the backend (microservices) but I did spend about 1,500ish hours with React back in 2016-2017 building user interfaces for a couple management systems and web apps.With that said, I’m struggling with one concept in particular when it comes to Flutter and that’s what seems to be the current meta of a creating a single monolithic codebase, in order to create cross-platforms apps.A good friend of mines company has a Flutter app in production for both iOS and Android, as well as Android TV, and they're about to add desktop as well. The codebase, as you can imagine, is packed full conditionals for platform specific widgets, styling and media queries. They also have multiple team members working on different parts of the codebase at the same time, stepping on each others toes.So I’m wondering why the meta with Flutter seems to be to go monolithic? Why not create a separate Flutter project for each supported platform, along with a centralized library of cross-platform widgets that are sharable amongst platforms, projects and teams? We used to do this with React.The downsides to this approach that I can see are really just the initial setup cost (time) for the projects, CI/CD configuration, etc. Worst case scenario we only talking about one day of time once someone is familiar with the process.The benefits I can see to separate projects are (no particular order):Projects become far less complicated to understand (cognitive overhead) and maintain because they are platform-specific. Allot less code noise. Revisiting something months later when the mental model has expired and have it make sense quickly is a huge win IMO.A projects codebase is smaller and probably more performant. You're not shipping all platforms in a single codebase. Maybe there is a way to exclude non target-platform code in Flutter that I haven't discovered yet?Separate teams or employees can maintain separate platforms and platforms can be on different versions, vary in their feature set, etc..Easier/faster for new team members to get up to speed.More optimized UIs (less adaptiveness/responsiveness)A cross-platform widget, services, etc. library means future projects get built quicker because reusable components already exist.What else?Anyways, I'm curious if anyone else or your the company you work for are using separate platform projects?I really feel like cross-platform does not mean single code base and any upfront cost of a separate platform projects would be recovered tenfold over the life a of a project. Maybe I'm wrong and missing something?Cheers,Caz
September 27, 2021 at 06:38PM by Cazineer
https://ift.tt/3kKK4Cn
Cross-platform does not mean single codebase.
Good morning fellow Flutterlings! Wait, is that a thing? We have Gophers in Go and Rustaceans in Rust... What do we call a Flutter enthusiast? Maybe a Flutturion? Anyways, I digress.For the past month I’ve been learning Flutter and Dart and I’ve been having a blast. My background is primarily Rust and Go on the backend (microservices) but I did spend about 1,500ish hours with React back in 2016-2017 building user interfaces for a couple management systems and web apps.With that said, I’m struggling with one concept in particular when it comes to Flutter and that’s what seems to be the current meta of a creating a single monolithic codebase, in order to create cross-platforms apps.A good friend of mines company has a Flutter app in production for both iOS and Android, as well as Android TV, and they're about to add desktop as well. The codebase, as you can imagine, is packed full conditionals for platform specific widgets, styling and media queries. They also have multiple team members working on different parts of the codebase at the same time, stepping on each others toes.So I’m wondering why the meta with Flutter seems to be to go monolithic? Why not create a separate Flutter project for each supported platform, along with a centralized library of cross-platform widgets that are sharable amongst platforms, projects and teams? We used to do this with React.The downsides to this approach that I can see are really just the initial setup cost (time) for the projects, CI/CD configuration, etc. Worst case scenario we only talking about one day of time once someone is familiar with the process.The benefits I can see to separate projects are (no particular order):Projects become far less complicated to understand (cognitive overhead) and maintain because they are platform-specific. Allot less code noise. Revisiting something months later when the mental model has expired and have it make sense quickly is a huge win IMO.A projects codebase is smaller and probably more performant. You're not shipping all platforms in a single codebase. Maybe there is a way to exclude non target-platform code in Flutter that I haven't discovered yet?Separate teams or employees can maintain separate platforms and platforms can be on different versions, vary in their feature set, etc..Easier/faster for new team members to get up to speed.More optimized UIs (less adaptiveness/responsiveness)A cross-platform widget, services, etc. library means future projects get built quicker because reusable components already exist.What else?Anyways, I'm curious if anyone else or your the company you work for are using separate platform projects?I really feel like cross-platform does not mean single code base and any upfront cost of a separate platform projects would be recovered tenfold over the life a of a project. Maybe I'm wrong and missing something?Cheers,Caz
September 27, 2021 at 06:38PM by Cazineer
https://ift.tt/3kKK4Cn
New post on /r/flutterdev subreddit:
Section Titles on ListView in Flutter
https://ift.tt/3obCZgh
September 27, 2021 at 06:23PM by VandadNahavandipoor
https://ift.tt/3kMRUvs
Section Titles on ListView in Flutter
https://ift.tt/3obCZgh
September 27, 2021 at 06:23PM by VandadNahavandipoor
https://ift.tt/3kMRUvs
GitHub
flutter-tips-and-tricks/section-titles-on-listview-in-flutter.md at main · vandadnp/flutter-tips-and-tricks
A Collection of Flutter and Dart Tips and Tricks. Contribute to vandadnp/flutter-tips-and-tricks development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Branded Flutter Drawers
https://ift.tt/3EWKXzT
September 27, 2021 at 08:51PM by fredgrott
https://ift.tt/3kIsrmC
Branded Flutter Drawers
https://ift.tt/3EWKXzT
September 27, 2021 at 08:51PM by fredgrott
https://ift.tt/3kIsrmC
Medium
Branded Flutter Drawers
When a new UX trend such as Navigation Rail and or Drawer on large screens and tabbed bottom navbar on mobile screens rears up, you should…
New post on /r/flutterdev subreddit:
A New Form System for Flutter
https://ift.tt/2XVqcUh
September 27, 2021 at 11:13PM by gaspard-m
https://ift.tt/3m8k6Z5
A New Form System for Flutter
https://ift.tt/2XVqcUh
September 27, 2021 at 11:13PM by gaspard-m
https://ift.tt/3m8k6Z5
Medium
A New Form System for Flutter
The most straightforward form systems available for free for building complex Flutter form with only a few lines of code.
New post on /r/flutterdev subreddit:
Check out this flutter package
https://ift.tt/3kN6dAc
September 27, 2021 at 11:49PM by No-Table9539
https://ift.tt/3ANpabo
Check out this flutter package
https://ift.tt/3kN6dAc
September 27, 2021 at 11:49PM by No-Table9539
https://ift.tt/3ANpabo
Dart packages
blurry_modal_progress_hud | Flutter Package
Just like modal_progress_hud this is a simple widget wrapper to enable modal progress hud (a modal progress indicator, hud = heads up display)
New post on /r/flutterdev subreddit:
Flutter Supabase Github Authentication
https://youtu.be/At4c4_zfaUg
September 28, 2021 at 07:08AM by realappdev
https://ift.tt/39FrWnf
Flutter Supabase Github Authentication
https://youtu.be/At4c4_zfaUg
September 28, 2021 at 07:08AM by realappdev
https://ift.tt/39FrWnf
YouTube
4. Github Authentication | Flutter Supabase Github Authentication | Supabase Flutter Github Auth
Learn about Github Authentication | Flutter Supabase Github Authentication | Supabase Flutter Github Auth. In this series of flutter Supabase, You will be learning everything about Supabase and Flutter. This series will cover all the features and flutter…
New post on /r/flutterdev subreddit:
Flutter for Web Development
Is Flutter better for Web Developments than HTML&CSS? Or is there any flutter's pros/cons for Web dev?
September 28, 2021 at 08:57AM by zuhudz
https://ift.tt/3ujnN1D
Flutter for Web Development
Is Flutter better for Web Developments than HTML&CSS? Or is there any flutter's pros/cons for Web dev?
September 28, 2021 at 08:57AM by zuhudz
https://ift.tt/3ujnN1D
reddit
Flutter for Web Development
Is Flutter better for Web Developments than HTML&CSS? Or is there any flutter's pros/cons for Web dev?
New post on /r/flutterdev subreddit:
[Mobile/Desktop] `quick_breakpad` -- Crash report plugin via Google Breakpad
GitHub: https://github.com/woodemi/quick_breakpadpub: https://pub.dev/packages/quick_breakpadGoogle Breakpad: https://chromium.googlesource.com/breakpad/breakpadBreakpad is a set of client and server components which implement a crash-reporting system.Android dump file parsedSo the crash is at line 30 of quick_breakpad_example.cpp
September 28, 2021 at 10:19AM by sunbreakwang
https://ift.tt/3ofJGhd
[Mobile/Desktop] `quick_breakpad` -- Crash report plugin via Google Breakpad
GitHub: https://github.com/woodemi/quick_breakpadpub: https://pub.dev/packages/quick_breakpadGoogle Breakpad: https://chromium.googlesource.com/breakpad/breakpadBreakpad is a set of client and server components which implement a crash-reporting system.Android dump file parsedSo the crash is at line 30 of quick_breakpad_example.cpp
Operating system: Android 0.0.0 Linux 3.18.71-perf-g4a0ef96 #1 SMP PREEMPT Thu Nov 22 00:40:45 CST 2018 aarch64 CPU: arm64 4 CPUs GPU: UNKNOWN Crash reason: SIGSEGV /SEGV_MAPERR Crash address: 0x0 Process uptime: not available Thread 0 (crashed) 0 libquick-breakpad-example.so!Java_com_example_quick_1breakpad_1example_Utils_crash [quick_breakpad_example.cpp : 30 + 0x0]iOS dump file parsedSo the crash is at line 11 of AppDelegate.m
Operating system: iOS 11.3.1 20E241 CPU: amd64 family 6 model 158 stepping 10 12 CPUs GPU: UNKNOWN Crash reason: EXC_BAD_ACCESS / KERN_INVALID_ADDRESS Crash address: 0x0 Process uptime: 1 seconds Thread 0 (crashed) 0 Runner!__57-[AppDelegate application:didFinishLaunchingWithOptions:]_block_invoke [AppDelegate.m : 11 + 0x0]
September 28, 2021 at 10:19AM by sunbreakwang
https://ift.tt/3ofJGhd
GitHub
GitHub - woodemi/quick_breakpad: A cross-platform flutter plugin for C/C++/ObjC crash report via Google Breakpad
A cross-platform flutter plugin for C/C++/ObjC crash report via Google Breakpad - GitHub - woodemi/quick_breakpad: A cross-platform flutter plugin for C/C++/ObjC crash report via Google Breakpad
New post on /r/flutterdev subreddit:
Which backend do you recommend?
Context:We are a startup trying to build a crypto app with brokerage and a wallet. We are trying to figure out what the best option would be with regards to our backend. I have experience with Firebase, but I have been told that NoSQL databases are not optimal for when money is being exchanged through the app. The other option would be Appwrite or Supabase. However, as far as I'm aware Appwrite does not support push notifications, and is relatively new when it comes to Flutter support. Any other options that would be optimal for this scenario?Requirements:- Security- Push notifications- (Possibly) Wallet- BrokerageThanks in advance!
September 28, 2021 at 11:51AM by webdev93
https://ift.tt/3F8WSLd
Which backend do you recommend?
Context:We are a startup trying to build a crypto app with brokerage and a wallet. We are trying to figure out what the best option would be with regards to our backend. I have experience with Firebase, but I have been told that NoSQL databases are not optimal for when money is being exchanged through the app. The other option would be Appwrite or Supabase. However, as far as I'm aware Appwrite does not support push notifications, and is relatively new when it comes to Flutter support. Any other options that would be optimal for this scenario?Requirements:- Security- Push notifications- (Possibly) Wallet- BrokerageThanks in advance!
September 28, 2021 at 11:51AM by webdev93
https://ift.tt/3F8WSLd
reddit
Which backend do you recommend?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Use Rust (instead of C++) to develop some algorithms used in Flutter in a real app used in the *production environment* - Is it mature enough? Will I face troubles? Do you suggest it? Has anyone used it?
I write a Flutter app (>100kloc), and need to embed some computer vision algorithms for it. Originally, I use C++, and use the OpenCV library to develop my algorithms. Then I use dart:ffi to allow Flutter code to call my C++ code.It works quite well, but now I need to develop much more complex algorithms, and I am worried because C++ is known to be dangerous unless you are extremely well-trained. So I want to move to Rust. I have learned Rust and used it for several toy projects and love its safety very much. I also see some tutorials about how Rust talks with Flutter (e.g. this one).However, I am quite not sure whether I should do it. Any suggestions and discussions are appreciated!P.S. I have had some discussions with Rust people and it is very wonderful. Of course, I also want to listen to Flutter people as well ;)
September 28, 2021 at 11:32AM by fzyzcjy
https://ift.tt/3uvFNWV
Use Rust (instead of C++) to develop some algorithms used in Flutter in a real app used in the *production environment* - Is it mature enough? Will I face troubles? Do you suggest it? Has anyone used it?
I write a Flutter app (>100kloc), and need to embed some computer vision algorithms for it. Originally, I use C++, and use the OpenCV library to develop my algorithms. Then I use dart:ffi to allow Flutter code to call my C++ code.It works quite well, but now I need to develop much more complex algorithms, and I am worried because C++ is known to be dangerous unless you are extremely well-trained. So I want to move to Rust. I have learned Rust and used it for several toy projects and love its safety very much. I also see some tutorials about how Rust talks with Flutter (e.g. this one).However, I am quite not sure whether I should do it. Any suggestions and discussions are appreciated!P.S. I have had some discussions with Rust people and it is very wonderful. Of course, I also want to listen to Flutter people as well ;)
September 28, 2021 at 11:32AM by fzyzcjy
https://ift.tt/3uvFNWV
GitHub
GitHub - brickpop/flutter-rust-ffi: Starter project for Flutter plugins willing to access native and synchronous rust code using…
Starter project for Flutter plugins willing to access native and synchronous rust code using FFI - GitHub - brickpop/flutter-rust-ffi: Starter project for Flutter plugins willing to access native a...
New post on /r/flutterdev subreddit:
Announcing go_router, a new router based on Flutter's Nav2 API
go_router comes with support for:mobile, web and desktopdeclarative, parameterized routingdeep and dynamic linkingnested navigationredirectioncustom transitionsroute debuggingeasily remove the # from the browser's address barand more!Go and route today! https://pub.dev/packages/go_router
September 28, 2021 at 05:34PM by csells
https://ift.tt/3uhxjCk
Announcing go_router, a new router based on Flutter's Nav2 API
go_router comes with support for:mobile, web and desktopdeclarative, parameterized routingdeep and dynamic linkingnested navigationredirectioncustom transitionsroute debuggingeasily remove the # from the browser's address barand more!Go and route today! https://pub.dev/packages/go_router
September 28, 2021 at 05:34PM by csells
https://ift.tt/3uhxjCk
Dart packages
go_router | Flutter package
A declarative router for Flutter based on Navigation 2 supporting deep linking, data-driven routes and more
New post on /r/flutterdev subreddit:
Flutter Skeleton App, What App Arch Is It?
https://ift.tt/39LDJAs
September 28, 2021 at 05:22PM by fredgrott
https://ift.tt/2XZOQUb
Flutter Skeleton App, What App Arch Is It?
https://ift.tt/39LDJAs
September 28, 2021 at 05:22PM by fredgrott
https://ift.tt/2XZOQUb
Medium
Flutter Skeleton App, What App Arch Is It?
You cannot clean up the Skeleton app to set up quality best practices in OOP, FP, and UX unless you understand just what application…
New post on /r/flutterdev subreddit:
Best way to store In-App Purchases information?
I’m thinking about a good architectural choice to keep track of the in-app purchases in my app, specifically the first purchase a user makes. I’m using Cloud Firestore as database but some say that it’s not secure to store purchases information there. What’s a good architecture to store these kinds of information?Thank you in advance!
September 28, 2021 at 07:22PM by Icy_Entertainment847
https://ift.tt/3AQkode
Best way to store In-App Purchases information?
I’m thinking about a good architectural choice to keep track of the in-app purchases in my app, specifically the first purchase a user makes. I’m using Cloud Firestore as database but some say that it’s not secure to store purchases information there. What’s a good architecture to store these kinds of information?Thank you in advance!
September 28, 2021 at 07:22PM by Icy_Entertainment847
https://ift.tt/3AQkode
reddit
Best way to store In-App Purchases information?
I’m thinking about a good architectural choice to keep track of the in-app purchases in my app, specifically the first purchase a user makes. I’m...
New post on /r/flutterdev subreddit:
Why don’t YouTube app switch to using Flutter?
Please leave your insights down below ⬇️.Also if you are from the YouTube team at Google and are allowed to share something please do.Is it not mature enough to for a video playing app?Using Flutter in YouTube would basically make people trust the framework more since YouTube is one of the biggest income generating products for Google, as far as I know.
September 28, 2021 at 09:14PM by YazeedAlKhalaf
https://ift.tt/3CUca4p
Why don’t YouTube app switch to using Flutter?
Please leave your insights down below ⬇️.Also if you are from the YouTube team at Google and are allowed to share something please do.Is it not mature enough to for a video playing app?Using Flutter in YouTube would basically make people trust the framework more since YouTube is one of the biggest income generating products for Google, as far as I know.
September 28, 2021 at 09:14PM by YazeedAlKhalaf
https://ift.tt/3CUca4p
Reddit
From the FlutterDev community on Reddit: Why don’t YouTube app switch to using Flutter?
Posted by YazeedAlKhalaf - No votes and 14 comments
New post on /r/flutterdev subreddit:
Can flutter be used to create home screen widgets (not widgets in the meaning of Flutter, but actual widgets)
If so how can it be done? for both ios and andriod
September 28, 2021 at 09:24PM by Aya_Baur
https://ift.tt/2Y6Ncju
Can flutter be used to create home screen widgets (not widgets in the meaning of Flutter, but actual widgets)
If so how can it be done? for both ios and andriod
September 28, 2021 at 09:24PM by Aya_Baur
https://ift.tt/2Y6Ncju
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
How to Build a Photo Editing App in 10 minutes using Flutter and IMG.LY
https://ift.tt/3kNZS7f
September 29, 2021 at 06:52AM by SyrupConstant3503
https://ift.tt/2YcwC1z
How to Build a Photo Editing App in 10 minutes using Flutter and IMG.LY
https://ift.tt/3kNZS7f
September 29, 2021 at 06:52AM by SyrupConstant3503
https://ift.tt/2YcwC1z
Medium
How to Build a Photo Editing App in 10 minutes using Flutter and IMG.LY
Hello everyone, in today's article, you will learn how to build a photo editing app using Flutter and Img.ly.
New post on /r/flutterdev subreddit:
Test coverage explains with lcov on Flutter
I just wrote my second article take a look :) !etiennetheodore.com/test-coverage-explain-with-lcov-on-dart/#100DaysOfCode #dart #flutter #flutterdev #code #programming #Software #tutorial #dev
September 29, 2021 at 09:55AM by Puzzleheaded_Bowl736
https://ift.tt/2ZAvBRf
Test coverage explains with lcov on Flutter
I just wrote my second article take a look :) !etiennetheodore.com/test-coverage-explain-with-lcov-on-dart/#100DaysOfCode #dart #flutter #flutterdev #code #programming #Software #tutorial #dev
September 29, 2021 at 09:55AM by Puzzleheaded_Bowl736
https://ift.tt/2ZAvBRf
Etienne Théodore
Test coverage explains with lcov on Flutter
Introduction
As developers, we want to have a clear view of how many covers our code source
has. Somethings we want to test only a part of our codebase or whatsoever, and
it can be really painful to do that.
With Flutter, we can make test coverage to see…
As developers, we want to have a clear view of how many covers our code source
has. Somethings we want to test only a part of our codebase or whatsoever, and
it can be really painful to do that.
With Flutter, we can make test coverage to see…