New post on /r/flutterdev subreddit:
FYI Flutter docs added a new article about Building Adaptive Apps that's an absolutely fantastic and comprehensive read (even if you're a beginner!)
https://ift.tt/2RUSmfk
July 13, 2021 at 11:38PM by Azarro
https://ift.tt/3eyhSzl
FYI Flutter docs added a new article about Building Adaptive Apps that's an absolutely fantastic and comprehensive read (even if you're a beginner!)
https://ift.tt/2RUSmfk
July 13, 2021 at 11:38PM by Azarro
https://ift.tt/3eyhSzl
flutter.dev
Building adaptive apps
Some considerations and instructions on how to build adaptive apps to run on a variety of platforms.
New post on /r/flutterdev subreddit:
Perfectly looping CustomPaint Canvas Animation GIF
https://twitter.com/creativemaybeno/status/1414905192886136838?s=20
July 14, 2021 at 01:03AM by creativemaybeno
https://ift.tt/3wG4HlX
Perfectly looping CustomPaint Canvas Animation GIF
https://twitter.com/creativemaybeno/status/1414905192886136838?s=20
July 14, 2021 at 01:03AM by creativemaybeno
https://ift.tt/3wG4HlX
Twitter
creativecreatorormaybenot
new animation inspired by @beesandbombs source code: github.com/creativecreato…
New post on /r/flutterdev subreddit:
There is now a flag to prevent FutureBuilder from swallowing errors.
https://ift.tt/3kbY744
July 14, 2021 at 12:18AM by bernaferrari
https://ift.tt/3wEhy80
There is now a flag to prevent FutureBuilder from swallowing errors.
https://ift.tt/3kbY744
July 14, 2021 at 12:18AM by bernaferrari
https://ift.tt/3wEhy80
GitHub
Added rethrowError to FutureBuilder by werainkhatri · Pull Request #84308 · flutter/flutter
Added, documented and tested rethrowError functionality to FutureBuilder for user to decide whether FutureBuilder should rethrow or swallow errors.
Fixes #84058
Pre-launch Checklist
I read the Co...
Fixes #84058
Pre-launch Checklist
I read the Co...
New post on /r/flutterdev subreddit:
3 Ways To Make HyperLink In Flutter - Link Widget Added
https://ift.tt/36wLxo7
July 14, 2021 at 04:42AM by athira_reddy
https://ift.tt/2U6NMM9
3 Ways To Make HyperLink In Flutter - Link Widget Added
https://ift.tt/36wLxo7
July 14, 2021 at 04:42AM by athira_reddy
https://ift.tt/2U6NMM9
New post on Flutter Dev Google group:
is it possible to keep listview builder inside listview builder?
is it possible to keep listview builder inside listview builder? i am using listview builder in list tile we need listview builder to create new container based on responce of api is that possible .. give me suggestion...
July 14, 2021 at 08:02AM by Jayakrishna Chadalawada
https://ift.tt/36yHpDV
is it possible to keep listview builder inside listview builder?
is it possible to keep listview builder inside listview builder? i am using listview builder in list tile we need listview builder to create new container based on responce of api is that possible .. give me suggestion...
July 14, 2021 at 08:02AM by Jayakrishna Chadalawada
https://ift.tt/36yHpDV
New post on /r/flutterdev subreddit:
Flutter is Single-threaded - use Isolates (not Futures) in computation-expensive tasks
https://twitter.com/Kubenqpl/status/1415227568362565634
July 14, 2021 at 10:59AM by kubenqpl
https://ift.tt/3r6Z2Er
Flutter is Single-threaded - use Isolates (not Futures) in computation-expensive tasks
https://twitter.com/Kubenqpl/status/1415227568362565634
July 14, 2021 at 10:59AM by kubenqpl
https://ift.tt/3r6Z2Er
Twitter
Kuba Neukirch
Flutter is single threaded. Running some computation-expensive methods will freeze your UI. For simple REST invokation 'Future' is enough. But for something more complex use 'compute' method or 'flutter_isolate' package. It runs code on separate thread. #flutterdev…
New post on /r/flutterdev subreddit:
Draggable & Resizable windows In an MDI (Multiple-document interface) - Flutter
https://ift.tt/36ze8Jd
July 14, 2021 at 11:42AM by null_pointer_exce
https://ift.tt/3yT1AIQ
Draggable & Resizable windows In an MDI (Multiple-document interface) - Flutter
https://ift.tt/36ze8Jd
July 14, 2021 at 11:42AM by null_pointer_exce
https://ift.tt/3yT1AIQ
Medium
Desktop GUI Implementation using Flutter WEB (Part 3: Draggable & Resizable windows)
Hello again, and welcome to the third installment of my guide to desktop GUI implementation using Flutter WEB!
New post on /r/flutterdev subreddit:
Making Video Calls Using Flutter and Vonage Video
https://ift.tt/3kimHQY
July 14, 2021 at 12:43PM by ruskibenya
https://ift.tt/3kifhgg
Making Video Calls Using Flutter and Vonage Video
https://ift.tt/3kimHQY
July 14, 2021 at 12:43PM by ruskibenya
https://ift.tt/3kifhgg
Vonage
Making Video Calls Using Vonage Video and Flutter » Developer Content from Vonage ♥
Let's take a closer look at a Vonage Video Flutter app that allows us to make video calls
New post on /r/flutterdev subreddit:
How do you name your custom widgets?
I'm trying to decide a pattern to follow when naming the widgets on my project in a intuitive way. I have these options in mind:Naming every widget with your project name. For example, in an app called "Dashboard", you would have: DashboardButton, DashboardCalendar, DashboardDateSelector, etc.Naming every widget with a generic fixed prefix. For example: MyButton, MyCalendar, MyDateSelector (or any variants like CustomButton, etc).Naming every widget with just a descriptive name. For example: Button, Calendar, DateSelector, etc.Personally, I always use the last one, but sometimes I have some problems because of names already being defined in some library I'm using or even Flutter's library itself, causing some inconsistency.What are your opinions about this topic in specific?
July 14, 2021 at 02:40PM by HugoVS
https://ift.tt/3ehz1Nq
How do you name your custom widgets?
I'm trying to decide a pattern to follow when naming the widgets on my project in a intuitive way. I have these options in mind:Naming every widget with your project name. For example, in an app called "Dashboard", you would have: DashboardButton, DashboardCalendar, DashboardDateSelector, etc.Naming every widget with a generic fixed prefix. For example: MyButton, MyCalendar, MyDateSelector (or any variants like CustomButton, etc).Naming every widget with just a descriptive name. For example: Button, Calendar, DateSelector, etc.Personally, I always use the last one, but sometimes I have some problems because of names already being defined in some library I'm using or even Flutter's library itself, causing some inconsistency.What are your opinions about this topic in specific?
July 14, 2021 at 02:40PM by HugoVS
https://ift.tt/3ehz1Nq
reddit
How do you name your custom widgets?
I'm trying to decide a pattern to follow when naming the widgets on my project in a intuitive way. I have these options in mind: * Naming every...
New post on /r/flutterdev subreddit:
Finally, my first package published!
Hi there!I'm newbie for flutter(and English :P)I publish my first packagehttps://pub.dev/packages/number_paginationIt's very very simple and useful for web or large screenthx!
July 14, 2021 at 02:24PM by taz1208
https://ift.tt/3AYNTdg
Finally, my first package published!
Hi there!I'm newbie for flutter(and English :P)I publish my first packagehttps://pub.dev/packages/number_paginationIt's very very simple and useful for web or large screenthx!
July 14, 2021 at 02:24PM by taz1208
https://ift.tt/3AYNTdg
Dart packages
number_pagination | Flutter package
Pagination using numbers, similar to the classic web-style pagination. Explore pages by numbers, not infinite scrolling!
New post on /r/flutterdev subreddit:
The Flutter State Management Secret
https://ift.tt/3wHy8nH
July 14, 2021 at 03:20PM by fredgrott
https://ift.tt/3rb3odF
The Flutter State Management Secret
https://ift.tt/3wHy8nH
July 14, 2021 at 03:20PM by fredgrott
https://ift.tt/3rb3odF
Medium
The Flutter State Management Secret
Matt Carroll is wrong! There is a Flutter State Management Secret that makes understanding Flutter State Management easy to understand and…
New post on /r/flutterdev subreddit:
Am I the only one that finds the http package extremely annoying since version 0.13.0?
Ever since version 0.13.0 I need to write all my request urls using Uri.parse("insert url here").Am I the only one that finds it super annoying? Any good alternatives?
July 14, 2021 at 04:55PM by TesLake
https://ift.tt/3z2N3dT
Am I the only one that finds the http package extremely annoying since version 0.13.0?
Ever since version 0.13.0 I need to write all my request urls using Uri.parse("insert url here").Am I the only one that finds it super annoying? Any good alternatives?
July 14, 2021 at 04:55PM by TesLake
https://ift.tt/3z2N3dT
reddit
Am I the only one that finds the http package extremely annoying...
Ever since version 0.13.0 I need to write all my request urls using **Uri.parse("insert url here").** Am I the only one that finds it super...
New post on /r/flutterdev subreddit:
How to Use Buttons in your Flutter Projects - Flutter for Beginners
https://www.youtube.com/watch?v=oQi7ctwdi9I
July 14, 2021 at 04:42PM by olu_tayormi
https://ift.tt/3r9k7xW
How to Use Buttons in your Flutter Projects - Flutter for Beginners
https://www.youtube.com/watch?v=oQi7ctwdi9I
July 14, 2021 at 04:42PM by olu_tayormi
https://ift.tt/3r9k7xW
YouTube
How to Use Buttons in your Flutter Projects - Flutter for Beginners
Project Repo: https://github.com/tayormi/flutter_learning
---
👉 Twitter: https://twitter.com/olu_tayormi
👉 Linkedin: https://linkedin.com/in/tayormi
👉 Github: https://github.com/tayormi
·································································…
---
👉 Twitter: https://twitter.com/olu_tayormi
👉 Linkedin: https://linkedin.com/in/tayormi
👉 Github: https://github.com/tayormi
·································································…
New post on /r/flutterdev subreddit:
Your views
Hello fellow flutter developers, I hope you all are doing great, I was selected in an internship, and I am excited about that, regardless of what structure my team follows, I want to know what are some good and clean structures to be followed, for like industry level/ real world apps. I want every segment to be covered, the things I want to know are -1) Statemanagement - As a fellow flutter dev, you know how much confusion does it makes in the beginning, I only know about provider, but I am hearing a lot about Riverpod. Please tell me your suggestion2) Scalability - I want to work on some personal project to boost my skills, I have some high hopes for that one, So I want to scale it if it goes well, I worked on a project that got me all these interviews from companies, but I felt it is not a good structured for scalability.3)Http Calls- I used this process - I don't know the name - It is converting json object into dart using typequick - and then making a service class and future method to call API, reference, but one of the assignments given by one of the hirers was using chopper/retrofit for api calls and built Value/ json serializable for models.4)Backend - I prefer custom backend, but if anyone has good apps running on firebase, again for scalability. I want to know thier side as well.5) Algorithms and data structures - I am not from CS background, I want to learn more about algorithms and data structures, any resources where I can learn the best of dart.6) General question (not related to flutter) - As I am not from CS background, how much experience do you think I should need to apply for full-time jobs. This internship will be for 6 months, I will give my everything in this 6 months and also a side personal project, Please tell me from hirer perspective, also I am focusing more on remote jobs. any sources for remote jobs? apart from angel list, we work remotely?Sorry for my long, any suggestions would help me, Thanking you in advance, have a great day. :)
July 14, 2021 at 04:20PM by PussaeExaminer
https://ift.tt/3wP1WPv
Your views
Hello fellow flutter developers, I hope you all are doing great, I was selected in an internship, and I am excited about that, regardless of what structure my team follows, I want to know what are some good and clean structures to be followed, for like industry level/ real world apps. I want every segment to be covered, the things I want to know are -1) Statemanagement - As a fellow flutter dev, you know how much confusion does it makes in the beginning, I only know about provider, but I am hearing a lot about Riverpod. Please tell me your suggestion2) Scalability - I want to work on some personal project to boost my skills, I have some high hopes for that one, So I want to scale it if it goes well, I worked on a project that got me all these interviews from companies, but I felt it is not a good structured for scalability.3)Http Calls- I used this process - I don't know the name - It is converting json object into dart using typequick - and then making a service class and future method to call API, reference, but one of the assignments given by one of the hirers was using chopper/retrofit for api calls and built Value/ json serializable for models.4)Backend - I prefer custom backend, but if anyone has good apps running on firebase, again for scalability. I want to know thier side as well.5) Algorithms and data structures - I am not from CS background, I want to learn more about algorithms and data structures, any resources where I can learn the best of dart.6) General question (not related to flutter) - As I am not from CS background, how much experience do you think I should need to apply for full-time jobs. This internship will be for 6 months, I will give my everything in this 6 months and also a side personal project, Please tell me from hirer perspective, also I am focusing more on remote jobs. any sources for remote jobs? apart from angel list, we work remotely?Sorry for my long, any suggestions would help me, Thanking you in advance, have a great day. :)
July 14, 2021 at 04:20PM by PussaeExaminer
https://ift.tt/3wP1WPv
YouTube
Get data from Api in flutter - HTTP Requests in flutter
In this video we will see how we can get data from API and upload that in our list.
This video will be first part of the series where we will learn how to handle http requests in flutter.
In the next video we will be covering on how to post request through…
This video will be first part of the series where we will learn how to handle http requests in flutter.
In the next video we will be covering on how to post request through…
New post on /r/flutterdev subreddit:
Tell the Flutter team about your experience with web support
It has been a few months since we announced the initial stable release of Flutter’s web support at Flutter Engage. Since then we’ve been continuing to work on improvements, with Flutter 2.2 bringing increased performance across our HTML and Canvaskit renderers, support for more desktop features, and improved accessibility support.We know about 11% of all Flutter builds are targeting the web. We would love to hear from those of you who are using Flutter for web app development. What is working or what is not working for you? How can we improve your developer experience?Several of us on the team will be reading and contributing to this thread to learn more about your experience with Flutter’s web support.Mariam Hasnany (u/mariamhas) - I’m the product manager on the Flutter team focused on webTim Sneath (u/timsneath) - director of product management for the Flutter & Dart teams at GoogleYegor Jbanov (u/virtualistic) - software engineer on the Flutter team focused on webMouad Debbar (u/mdebbar-goog) - software engineer on the Flutter team focused on webDavid Iglesias Teixeira (u/ditman-dev) - software engineer on the Flutter team focused on web
July 14, 2021 at 06:01PM by mariamhas
https://ift.tt/3yVRo29
Tell the Flutter team about your experience with web support
It has been a few months since we announced the initial stable release of Flutter’s web support at Flutter Engage. Since then we’ve been continuing to work on improvements, with Flutter 2.2 bringing increased performance across our HTML and Canvaskit renderers, support for more desktop features, and improved accessibility support.We know about 11% of all Flutter builds are targeting the web. We would love to hear from those of you who are using Flutter for web app development. What is working or what is not working for you? How can we improve your developer experience?Several of us on the team will be reading and contributing to this thread to learn more about your experience with Flutter’s web support.Mariam Hasnany (u/mariamhas) - I’m the product manager on the Flutter team focused on webTim Sneath (u/timsneath) - director of product management for the Flutter & Dart teams at GoogleYegor Jbanov (u/virtualistic) - software engineer on the Flutter team focused on webMouad Debbar (u/mdebbar-goog) - software engineer on the Flutter team focused on webDavid Iglesias Teixeira (u/ditman-dev) - software engineer on the Flutter team focused on web
July 14, 2021 at 06:01PM by mariamhas
https://ift.tt/3yVRo29
Medium
Flutter web support hits the stable milestone
Publish to web and mobile from the same codebase
New post on /r/flutterdev subreddit:
Profiling Flutter Applications Using Performance DevTools
https://ift.tt/3ejbagj
July 14, 2021 at 07:17PM by cheerfulboy
https://ift.tt/3hDyR52
Profiling Flutter Applications Using Performance DevTools
https://ift.tt/3ejbagj
July 14, 2021 at 07:17PM by cheerfulboy
https://ift.tt/3hDyR52
GeekyAnts Tech Blog
Profiling Flutter Applications Using Performance DevTools
Learn how to profile an inefficient application by using Flutter DevTools
New post on /r/flutterdev subreddit:
Recently had an interview for a Flutter position and was asked a question I wasn’t sure how to answer.
The interviewer asked how I consider memory optimization when developing a Flutter application.To be honest, I haven’t thought about memory optimization once when dealing with Flutter, but it seems more of an issue when writing native code.I guess my questions are whether you guys think a Flutter developer should consider low level memory optimization and how would you do this in Dart/ Flutter?
July 14, 2021 at 08:35PM by Agreeable_Can6418
https://ift.tt/2UKrcsO
Recently had an interview for a Flutter position and was asked a question I wasn’t sure how to answer.
The interviewer asked how I consider memory optimization when developing a Flutter application.To be honest, I haven’t thought about memory optimization once when dealing with Flutter, but it seems more of an issue when writing native code.I guess my questions are whether you guys think a Flutter developer should consider low level memory optimization and how would you do this in Dart/ Flutter?
July 14, 2021 at 08:35PM by Agreeable_Can6418
https://ift.tt/2UKrcsO
reddit
Recently had an interview for a Flutter position and was asked a...
The interviewer asked how I consider memory optimization when developing a Flutter application. To be honest, I haven’t thought about memory...
New post on /r/flutterdev subreddit:
Searching for an UI for your next Flutter project? Check this amazing video 🎉💯 . Also like, share & subscribe to see more amazing contents.
https://youtu.be/SAjhIRwyBgQ
July 14, 2021 at 11:25PM by jit_hub
https://ift.tt/3B7XheS
Searching for an UI for your next Flutter project? Check this amazing video 🎉💯 . Also like, share & subscribe to see more amazing contents.
https://youtu.be/SAjhIRwyBgQ
July 14, 2021 at 11:25PM by jit_hub
https://ift.tt/3B7XheS
YouTube
Banking App UI - Flutter UI - Speed Code
Nice clean Banking App UI using Flutter.
There are basically two screens :
1. Home Screen with the List of Cards & Transactions.
2. Card Screen to add & display Cards.
Key Features:
1. Custom Cards.
2. Bottom Navigation Bar.
3. Conditional Icons.
4.…
There are basically two screens :
1. Home Screen with the List of Cards & Transactions.
2. Card Screen to add & display Cards.
Key Features:
1. Custom Cards.
2. Bottom Navigation Bar.
3. Conditional Icons.
4.…
New post on /r/flutterdev subreddit:
Building Game with Flutter #7: Let's Code App Preferences for Sound On/Off
https://youtu.be/RCx4iyvKvYU
July 14, 2021 at 11:23PM by gladimdim
https://ift.tt/3zcCzJ1
Building Game with Flutter #7: Let's Code App Preferences for Sound On/Off
https://youtu.be/RCx4iyvKvYU
July 14, 2021 at 11:23PM by gladimdim
https://ift.tt/3zcCzJ1
YouTube
Building Game with Flutter #7: Let's Code App Preferences for Sound On/Off
In this video I will code a UI element to toggle Sound On/Off. We will see how Shared Preferences are used in the game and how to connect them to the UI elements and logic.
The game is not yet released but already has a name: "Loca Deserta: Chumaki". This…
The game is not yet released but already has a name: "Loca Deserta: Chumaki". This…
New post on /r/flutterdev subreddit:
Chances of getting hired in Upwork?
I have 2+ years of full-time work experience with flutter. Started back in May 2019.I developed, maintained, and published apps in both Google Play and iOS App Store. PLENTY of apps. Most of them I coded alone.I developed dart/flutter libraries. Here's my publisher page. All my packages are unit tested (96% lowest coverage).$10 per hour rate is already a huge amount of money for me. The cost of living is cheap in my country. $10 to $20 would be my rate.I see job posts on Upwork posted like 7 hours ago and there are already 50+ applicants/proposals. I wonder what's the ratio between beginners and experienced ones in Upwork when it comes to flutter developers.
July 15, 2021 at 03:08AM by xamantra
https://ift.tt/3BdVrZZ
Chances of getting hired in Upwork?
I have 2+ years of full-time work experience with flutter. Started back in May 2019.I developed, maintained, and published apps in both Google Play and iOS App Store. PLENTY of apps. Most of them I coded alone.I developed dart/flutter libraries. Here's my publisher page. All my packages are unit tested (96% lowest coverage).$10 per hour rate is already a huge amount of money for me. The cost of living is cheap in my country. $10 to $20 would be my rate.I see job posts on Upwork posted like 7 hours ago and there are already 50+ applicants/proposals. I wonder what's the ratio between beginners and experienced ones in Upwork when it comes to flutter developers.
July 15, 2021 at 03:08AM by xamantra
https://ift.tt/3BdVrZZ
Dart packages
Packages of publisher xamantra.dev
Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter, AngularDart, and general Dart programs.
New post on /r/flutterdev subreddit:
8 Flutter Background Image Examples For Beginners - Do not Miss It
https://ift.tt/2VEoZPT
July 15, 2021 at 02:09AM by athira_reddy
https://ift.tt/3hDDFqV
8 Flutter Background Image Examples For Beginners - Do not Miss It
https://ift.tt/2VEoZPT
July 15, 2021 at 02:09AM by athira_reddy
https://ift.tt/3hDDFqV