New post on /r/flutterdev subreddit:
flutter app development course part 1
https://youtu.be/dOfFeTPNQtg
September 27, 2021 at 12:54PM by mnick0438
https://ift.tt/3kK7ojz
flutter app development course part 1
https://youtu.be/dOfFeTPNQtg
September 27, 2021 at 12:54PM by mnick0438
https://ift.tt/3kK7ojz
YouTube
Flutter 1 Intro to flutter
#flutter #flutterappdevelopment #codingshark
Welcome to YouTube channel.
Subscribe to stay up to date with best practices about the Flutter SDK. See real code examples, and watch engineers from around the world putting Flutter to work!
Subscribe to stay…
Welcome to YouTube channel.
Subscribe to stay up to date with best practices about the Flutter SDK. See real code examples, and watch engineers from around the world putting Flutter to work!
Subscribe to stay…
New post on /r/flutterdev subreddit:
A Better Flutter Nav Rail
https://ift.tt/3odkVT0
September 27, 2021 at 01:53PM by fredgrott
https://ift.tt/3EUB1Xs
A Better Flutter Nav Rail
https://ift.tt/3odkVT0
September 27, 2021 at 01:53PM by fredgrott
https://ift.tt/3EUB1Xs
Medium
A Better Flutter Nav Rail
The second part of the adaptive component package from the Material.io team includes some components to create better dynamic navigation…
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 104 - Tutorials, videos, packages, and much more!
https://ift.tt/3iaYyda
September 27, 2021 at 03:05PM by vensign
https://ift.tt/3kMgAnQ
Flutter Tap Weekly Newsletter Week 104 - Tutorials, videos, packages, and much more!
https://ift.tt/3iaYyda
September 27, 2021 at 03:05PM by vensign
https://ift.tt/3kMgAnQ
Fluttertap
Newsletter Issue 104
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 104
New post on /r/flutterdev subreddit:
Creating the UI for Yet Another Fitness App in Flutter
https://youtu.be/qHgFta0p7Eo
September 27, 2021 at 02:49PM by AphrxWasHere
https://ift.tt/2WgFEK9
Creating the UI for Yet Another Fitness App in Flutter
https://youtu.be/qHgFta0p7Eo
September 27, 2021 at 02:49PM by AphrxWasHere
https://ift.tt/2WgFEK9
YouTube
Creating Yet Another Fitness App in Flutter - Part 1: UI/UX
In this video, I will be creating yet another Fitness App using Flutter. This video will simply walk through the design aspect of the app. This will be part 1 of a series where I develop an application from start to finish.
Make sure you like the video if…
Make sure you like the video if…
New post on /r/flutterdev subreddit:
The getter 'documents' isn't defined for the type 'QuerySnapshot<Map<String, dynamic>>'
The type 'List<QueryDocumentSnapshot<Map<String, dynamic>>>' used in the 'for' loop must implement 'Iterable' with a type argument that can be assigned to 'Map<dynamic, dynamic>'.dart(for_in_of_invalid_element_type) Changed from this code:
September 27, 2021 at 02:33PM by vaishu1005
https://ift.tt/3idCmPE
The getter 'documents' isn't defined for the type 'QuerySnapshot<Map<String, dynamic>>'
The type 'List<QueryDocumentSnapshot<Map<String, dynamic>>>' used in the 'for' loop must implement 'Iterable' with a type argument that can be assigned to 'Map<dynamic, dynamic>'.dart(for_in_of_invalid_element_type) Changed from this code:
class CategoryServices { String collection = "categories"; Firestore _firestore = Firestore.instance; Future<List<CategoryModel>> getCategories() async => _firestore.collection(collection).getDocuments().then((result) { List<CategoryModel> categories = []; for (DocumentSnapshot category in result.documents) { categories.add(CategoryModel.fromSnapshot(category)); } return categories; }); }To this, but getting an error. Where did I go wrong?
class CategoryModel { String? image; String? name; CategoryModel({this.image, this.name}); // receiving data from server factory CategoryModel.fromMap(map) { return CategoryModel(image: map['image'], name: map['name']); } // sending data to our server Map<String, dynamic> toMap() { return { 'image': image, 'name': name, }; } } class CategoryServices { String collection = "category"; FirebaseFirestore _firestore = FirebaseFirestore.instance; Future<List<CategoryModel>> getCategories() async => _firestore.collection(collection).get().then((result) { List<CategoryModel> categories = []; for (Map category in result.docs) { //error at this line categories.add(CategoryModel.fromMap(category)); } return categories; }); }
September 27, 2021 at 02:33PM by vaishu1005
https://ift.tt/3idCmPE
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…