New post on /r/flutterdev subreddit:
Secret Unit Test Tricks
https://ift.tt/3sKLBdS
August 24, 2021 at 06:39PM by fredgrott
https://ift.tt/388EJNY
Secret Unit Test Tricks
https://ift.tt/3sKLBdS
August 24, 2021 at 06:39PM by fredgrott
https://ift.tt/388EJNY
Medium
Secret Unit Test Tricks
Goldens, Integrated, and Widget Testing all share the core of the Flutter test package API. Let me show you how to organize and build up…
New tweet from FlutterDev:
🔥 Hot reload was fast in Flutter 2.0, but it got even faster in Flutter 2.2. 💙 Here’s how we did it ↓ https://t.co/DgowiTzbHH— Flutter (@FlutterDev) Aug 24, 2021
August 24, 2021 at 09:00PM
http://twitter.com/FlutterDev/status/1430243512860225541
🔥 Hot reload was fast in Flutter 2.0, but it got even faster in Flutter 2.2. 💙 Here’s how we did it ↓ https://t.co/DgowiTzbHH— Flutter (@FlutterDev) Aug 24, 2021
August 24, 2021 at 09:00PM
http://twitter.com/FlutterDev/status/1430243512860225541
New post on /r/flutterdev subreddit:
Favorite Udemy course for Flutter?
I’m preferably looking for courses for beginners and in English. Thanks!
August 24, 2021 at 09:29PM by CalitaWyatt4
https://ift.tt/2XXUVA9
Favorite Udemy course for Flutter?
I’m preferably looking for courses for beginners and in English. Thanks!
August 24, 2021 at 09:29PM by CalitaWyatt4
https://ift.tt/2XXUVA9
reddit
Favorite Udemy course for Flutter?
I’m preferably looking for courses for beginners and in English. Thanks!
New post on /r/flutterdev subreddit:
How to deal with the unwanted widgets Build in Flutter? - Flutter Agency
https://ift.tt/3BeuAMv
August 25, 2021 at 07:43AM by lil_dragplix
https://ift.tt/3mrN33X
How to deal with the unwanted widgets Build in Flutter? - Flutter Agency
https://ift.tt/3BeuAMv
August 25, 2021 at 07:43AM by lil_dragplix
https://ift.tt/3mrN33X
Flutter Agency
How to deal with the unwanted widgets Build in Flutter? - Flutter Agency
The build method in Flutter is designed such that it has no side effects. There are few ways to stop unwanted widgets build. So, in this article, we will see How to Deal With the Unwanted Widgets Build In Flutter?
New post on /r/flutterdev subreddit:
11 Things to Remember for Your Next Flutter Project
https://ift.tt/3mrZn4d
August 25, 2021 at 09:35AM by mkobuolys
https://ift.tt/3ykivTY
11 Things to Remember for Your Next Flutter Project
https://ift.tt/3mrZn4d
August 25, 2021 at 09:35AM by mkobuolys
https://ift.tt/3ykivTY
Medium
11 Things to Remember for Your Next Flutter Project
An extensive checklist to kick-off a new Flutter project
New post on /r/flutterdev subreddit:
70+ Android App Projects built with Jetpack Compose for Beginners, Intermediate and Experienced Developers
https://ift.tt/3msIF4F
August 25, 2021 at 12:37PM by TheInsaneApp
https://ift.tt/3zklJIk
70+ Android App Projects built with Jetpack Compose for Beginners, Intermediate and Experienced Developers
https://ift.tt/3msIF4F
August 25, 2021 at 12:37PM by TheInsaneApp
https://ift.tt/3zklJIk
Theinsaneapp
70+ Jetpack Compose Android App Projects For Beginners, Intermediate And Advanced Developers
Jetpack Compose Android Example - 70+ Jetpack Compose Android App Projects For Beginners and Intermediate Developers. Android Jetpack Compose Samples.
New post on /r/flutterdev subreddit:
Are this book good resource after angela yu course
https://ift.tt/3zkX6vo
August 25, 2021 at 01:24PM by otaku_300
https://ift.tt/3je8uDu
Are this book good resource after angela yu course
https://ift.tt/3zkX6vo
August 25, 2021 at 01:24PM by otaku_300
https://ift.tt/3je8uDu
New post on /r/flutterdev subreddit:
I read through the Routing Research Report and tried to summarize it
I went through the report mentioned in this post by u/marsNemophilist -- here's what I've found.A team of people found that Flutter Routing APIs, once known as Navigation 2.0, gave developers trouble and challenges -- especially with how it relates to the Web experience, but I found this is important if you're trying to build code that supports everything from the beginning.They investigated the best of the proposed community solutions, and asked three core questions:What are the most common navigation problemsHow is the community proposing we address these problemsAre those solutions easy to use?They took a scenario-driven approach.So they identified the most common navigation problems in Flutter and then tried to get the community-based Router solutions to solve those given scenarios. We'll see what those problems are as I dive into the results.VRoute, AutoRoute, and Beamer were the chosen options for study which were chosen from a group of 12 because they met all the initial criteria (you can see that here). I've used Beamer so was deeply curious how this turns out.We will walk through the problem and which package addresses the problems the best. Here are the findings.Technical problem 1: Deep linkingAll three support deep linking with path parameters way better than standard APIs. Beamer was the easiest to use but AutoRoute provided the most concise code for this problem.Their recommendation: Any of themTechnical problem 2: Sign-In routingWhere users might need to be redirected to sign in if they try to access a page they're aren't authenticated for.All three packages offer exact APIs to handle this problem.Their recommendation (paired with Deep Linking): VRouterTechnical problem 3: Nested RoutingWhen your path has multiple layers -- for example: /users/books and /users/friends may share the same user UI but provide unique nested UI for the books and friends.These three APIs are all great because they all continue to improve massively over the default APIs.In a trend, Beamer tended to be the easiest to use and achieve the goal, but was the worst when more nuanced behavior was required.Their recommendation (paired with Deep Linking): Beamer or VRouterSummaryMy Takeaway is if you've chosen any one of these three, you've got a good enough solution.They seemed to think Beamer was the easiest to plug in but handled edge cases more awkwardly.VRouter might be ugly if you really dislike Regex, and AutoRoute might turn you away if you don't like Codegen.Shout out to the team for putting this together. I'll probably stick with Beamer for my projects but I'm going to take a deeper dive into VRouter.(Posted here)
August 25, 2021 at 04:01PM by rcaraw1
https://ift.tt/38hmwhe
I read through the Routing Research Report and tried to summarize it
I went through the report mentioned in this post by u/marsNemophilist -- here's what I've found.A team of people found that Flutter Routing APIs, once known as Navigation 2.0, gave developers trouble and challenges -- especially with how it relates to the Web experience, but I found this is important if you're trying to build code that supports everything from the beginning.They investigated the best of the proposed community solutions, and asked three core questions:What are the most common navigation problemsHow is the community proposing we address these problemsAre those solutions easy to use?They took a scenario-driven approach.So they identified the most common navigation problems in Flutter and then tried to get the community-based Router solutions to solve those given scenarios. We'll see what those problems are as I dive into the results.VRoute, AutoRoute, and Beamer were the chosen options for study which were chosen from a group of 12 because they met all the initial criteria (you can see that here). I've used Beamer so was deeply curious how this turns out.We will walk through the problem and which package addresses the problems the best. Here are the findings.Technical problem 1: Deep linkingAll three support deep linking with path parameters way better than standard APIs. Beamer was the easiest to use but AutoRoute provided the most concise code for this problem.Their recommendation: Any of themTechnical problem 2: Sign-In routingWhere users might need to be redirected to sign in if they try to access a page they're aren't authenticated for.All three packages offer exact APIs to handle this problem.Their recommendation (paired with Deep Linking): VRouterTechnical problem 3: Nested RoutingWhen your path has multiple layers -- for example: /users/books and /users/friends may share the same user UI but provide unique nested UI for the books and friends.These three APIs are all great because they all continue to improve massively over the default APIs.In a trend, Beamer tended to be the easiest to use and achieve the goal, but was the worst when more nuanced behavior was required.Their recommendation (paired with Deep Linking): Beamer or VRouterSummaryMy Takeaway is if you've chosen any one of these three, you've got a good enough solution.They seemed to think Beamer was the easiest to plug in but handled edge cases more awkwardly.VRouter might be ugly if you really dislike Regex, and AutoRoute might turn you away if you don't like Codegen.Shout out to the team for putting this together. I'll probably stick with Beamer for my projects but I'm going to take a deeper dive into VRouter.(Posted here)
August 25, 2021 at 04:01PM by rcaraw1
https://ift.tt/38hmwhe
reddit
Flutter routing packages research report is out
Posted in r/FlutterDev by u/marsNemophilist • 4 points and 0 comments
New post on /r/flutterdev subreddit:
Remote Jobs(work from home jobs)
🙌Greetings People🙌!!We are glad🤩 to launch our First app📲 ‘Remote Jobs’Want to use your skills from the comfort of your home?IF YES, then here is an app for you to find remote jobs. Find jobs and internships that are remote-friendly and are available in work-from-home mode across different skills around the globe. Filter your jobs according to skill and also according to type (freelance, part-time, full time, and internships)Download the app now:-https://play.google.com/store/apps/details?id=com.yaaratech.remote.jobsPlease Give your valuable time to review our work and share your precious feedback with us.And don't forget to rate our app.RegardsYAARA TECH#internships #share #tech #jobseekers #work #freelance #hiring #jobsearch #career #resume #recruiting #recruiters #mode #fresher #people #recruitment #job #hr #jobs #workfromehome #remotework #remoteworkers #remotejobs #remoteworking #remotejob #remotehiring #remotelife #flutter #flutterdev #flutterdeveloper #fulltime #fulltimejob #fulltimework #parttimejob #parttimework #ux #ui #research #figma #xd #design #userexperience #uxdesign #uidesign #internship #parttime #aeologictechnologies #aeodiz #flutter #developer #android #ios #programming #developercommunity #flutterdeveloper #coding #programmer #flutterdev #appdeveloper #kotlin #reactnative #java #coder #daysofcode #dart #gallery #appdevelopment #innovation #freeconsultation #CEO #CTO #mobile #mobility #FlutterDevs #ui #ux #fluttercommunity #flutterdevelopers #flutterdev #flutterdeveloper #flutterui #flutterpackages #uidesign #uiux #graphs #userinterface #charts #uikit #webdevelopment #javascript #mobileappdevelopment #hosting #web #webdevelopers #webdeveloper #webdev #html #react #firebase #css #microsoft #php #mernstack #mern #nodejs #node #email #gmail #rive #animations #animation
August 25, 2021 at 03:58PM by Hosterlkr
https://ift.tt/389bn2e
Remote Jobs(work from home jobs)
🙌Greetings People🙌!!We are glad🤩 to launch our First app📲 ‘Remote Jobs’Want to use your skills from the comfort of your home?IF YES, then here is an app for you to find remote jobs. Find jobs and internships that are remote-friendly and are available in work-from-home mode across different skills around the globe. Filter your jobs according to skill and also according to type (freelance, part-time, full time, and internships)Download the app now:-https://play.google.com/store/apps/details?id=com.yaaratech.remote.jobsPlease Give your valuable time to review our work and share your precious feedback with us.And don't forget to rate our app.RegardsYAARA TECH#internships #share #tech #jobseekers #work #freelance #hiring #jobsearch #career #resume #recruiting #recruiters #mode #fresher #people #recruitment #job #hr #jobs #workfromehome #remotework #remoteworkers #remotejobs #remoteworking #remotejob #remotehiring #remotelife #flutter #flutterdev #flutterdeveloper #fulltime #fulltimejob #fulltimework #parttimejob #parttimework #ux #ui #research #figma #xd #design #userexperience #uxdesign #uidesign #internship #parttime #aeologictechnologies #aeodiz #flutter #developer #android #ios #programming #developercommunity #flutterdeveloper #coding #programmer #flutterdev #appdeveloper #kotlin #reactnative #java #coder #daysofcode #dart #gallery #appdevelopment #innovation #freeconsultation #CEO #CTO #mobile #mobility #FlutterDevs #ui #ux #fluttercommunity #flutterdevelopers #flutterdev #flutterdeveloper #flutterui #flutterpackages #uidesign #uiux #graphs #userinterface #charts #uikit #webdevelopment #javascript #mobileappdevelopment #hosting #web #webdevelopers #webdeveloper #webdev #html #react #firebase #css #microsoft #php #mernstack #mern #nodejs #node #email #gmail #rive #animations #animation
August 25, 2021 at 03:58PM by Hosterlkr
https://ift.tt/389bn2e
Google Play
Remote Jobs: Work From Home Jo - Apps on Google Play
This app helps you to find remote jobs across the globe.
New post on /r/flutterdev subreddit:
Humpday Q&A/AMA :: Constraints and RenderSlivers :: 25th August
https://youtube.com/watch?v=KPtwtvYe11U&feature=share
August 25, 2021 at 06:05PM by Pixelreddit
https://ift.tt/2WrwSsP
Humpday Q&A/AMA :: Constraints and RenderSlivers :: 25th August
https://youtube.com/watch?v=KPtwtvYe11U&feature=share
August 25, 2021 at 06:05PM by Pixelreddit
https://ift.tt/2WrwSsP
YouTube
Humpday Q&A/AMA :: Constraints and RenderSlivers :: 25th August
Today we're discussing Constraints, Flexibles, FlexFits, and RenderSlivers with our special guest, Tomek Polanski.
New post on /r/flutterdev subreddit:
Flattening Lists in Dart
https://ift.tt/3B3bSr0
August 25, 2021 at 06:49PM by VandadNahavandipoor
https://ift.tt/3BcPZFS
Flattening Lists in Dart
https://ift.tt/3B3bSr0
August 25, 2021 at 06:49PM by VandadNahavandipoor
https://ift.tt/3BcPZFS
New post on /r/flutterdev subreddit:
Creating an Audio Feed in Flutter (Part 1)
https://ift.tt/3mxuifn
August 25, 2021 at 09:13PM by ProGloriaRomae
https://ift.tt/3gwMQJ8
Creating an Audio Feed in Flutter (Part 1)
https://ift.tt/3mxuifn
August 25, 2021 at 09:13PM by ProGloriaRomae
https://ift.tt/3gwMQJ8
In The Loop
Creating an Audio Feed in Flutter (Part 1)
Create an Audio Controller in Flutter
New post on /r/flutterdev subreddit:
like Animals in flutter
https://youtube.com/shorts/XPXmCGeVrkk?feature=share
August 25, 2021 at 08:34PM by base77
https://ift.tt/3knHukf
like Animals in flutter
https://youtube.com/shorts/XPXmCGeVrkk?feature=share
August 25, 2021 at 08:34PM by base77
https://ift.tt/3knHukf
New post on /r/flutterdev subreddit:
Backslash Flutter - Just 67 Subscriber Away from 1000 Subs
After 7 Months 25 Days, 20+ Videos, 3 Months inactiveness On Youtube,Here I am with 933 Subscriber, just 67 away from reaching that 1000 Milestone.I have provided so much amazing content to YouTube community, to this reddit group and various other facebook groups. Please subscribe! 👇Backslash Flutter
August 25, 2021 at 10:07PM by backslashflutter
https://ift.tt/2Wsg6d5
Backslash Flutter - Just 67 Subscriber Away from 1000 Subs
After 7 Months 25 Days, 20+ Videos, 3 Months inactiveness On Youtube,Here I am with 933 Subscriber, just 67 away from reaching that 1000 Milestone.I have provided so much amazing content to YouTube community, to this reddit group and various other facebook groups. Please subscribe! 👇Backslash Flutter
August 25, 2021 at 10:07PM by backslashflutter
https://ift.tt/2Wsg6d5
New post on /r/flutterdev subreddit:
FREE Flutter Workshop / Coding Roulette Edition tomorrow 8/26 - RSVP now!!!
Ever heard of #CodingRoulette? It’s a methodology for real-time collaborative development to make workshops more engaging, which I’m implementing in my next FREE #Flutter workshop, tomorrow, Thursday Aug 26, 6-8PM ET. Register below and join us in this unique, shared development experience like no other, and learn Flutter in the process in a fun, community-centric atmosphere, hope to see ya’ll there! https://gdg.community.dev/events/details/google-gdg-lawrence-presents-free-flutter-workshop-coding-roulette-edition-1/
August 25, 2021 at 11:32PM by romanjustcodes
https://ift.tt/38gg8XD
FREE Flutter Workshop / Coding Roulette Edition tomorrow 8/26 - RSVP now!!!
Ever heard of #CodingRoulette? It’s a methodology for real-time collaborative development to make workshops more engaging, which I’m implementing in my next FREE #Flutter workshop, tomorrow, Thursday Aug 26, 6-8PM ET. Register below and join us in this unique, shared development experience like no other, and learn Flutter in the process in a fun, community-centric atmosphere, hope to see ya’ll there! https://gdg.community.dev/events/details/google-gdg-lawrence-presents-free-flutter-workshop-coding-roulette-edition-1/
August 25, 2021 at 11:32PM by romanjustcodes
https://ift.tt/38gg8XD
Twitter
#codingroulette hashtag on Twitter
See Tweets about #codingroulette on Twitter. See what people are saying and join the conversation.
New post on /r/flutterdev subreddit:
App Store Transitions
https://ift.tt/38cS6wC
August 26, 2021 at 01:53AM by fredgrott
https://ift.tt/3B7yExK
App Store Transitions
https://ift.tt/38cS6wC
August 26, 2021 at 01:53AM by fredgrott
https://ift.tt/3B7yExK
Medium
App Store Transitions
Let’s have some fun with Hero transitions and implement an App Store transition.
New post on /r/flutterdev subreddit:
Flutter UI E Commerce Clothes App Tutorial Part 1
https://youtu.be/YtiftyEohes
August 26, 2021 at 01:10AM by Confident-Basket-896
https://ift.tt/3koqsT5
Flutter UI E Commerce Clothes App Tutorial Part 1
https://youtu.be/YtiftyEohes
August 26, 2021 at 01:10AM by Confident-Basket-896
https://ift.tt/3koqsT5
YouTube
Flutter UI E Commerce Clothes App Tutorial | App from Scratch Part 1
Welcome to my Flutter Apps from Scratch tutorial series. In this video, we will build the e commerce clothes app UI and you will learn how to build this beautiful flutter app from the scratch.
🙊 Subscribe to FullstackSchool - https://bit.ly/3jNdGx5
Part…
🙊 Subscribe to FullstackSchool - https://bit.ly/3jNdGx5
Part…
New post on /r/flutterdev subreddit:
Flutter- Convert complex objects (Nested Maps, Lists) to a url query string
https://ift.tt/38t7tBz
August 26, 2021 at 01:07AM by No_Argument6662
https://ift.tt/2XMyJZp
Flutter- Convert complex objects (Nested Maps, Lists) to a url query string
https://ift.tt/38t7tBz
August 26, 2021 at 01:07AM by No_Argument6662
https://ift.tt/2XMyJZp
jol
flutter / dart - send nested map or lists param with get request
flutter / dart - send nested map or lists param with get request. convert complex dart objects to a url query string or uri
New post on /r/flutterdev subreddit:
I developed a mental health related app from my personal experience!
So basically last year I was feeling a bit low. I really didn’t know how to become better since I had never faced this before. I used to not get proper sleep and woke up after having dreams due to my anxiety. So I just started noting what activities I did and whom I did it with in a google doc. Slowly I also started rating how I felt about the interaction. Soon I started to notice a pattern that I felt better when I hung out with some people and when I did certain activities. This way I was able to feel much better than before and I gained confidence that I can control my own mental health. I stopped dreaming as frequently since then. I even built an app for this so that other people can do the same .The app is called Happyer which was made based on the above experience and provides insights into impact of a given activity or friend. The app also has a "Find Therapist" feature using which you can contact our therapists for help.https://play.google.com/store/apps/details?id=com.happyer4life for android https://apps.apple.com/ca/app/happyer/id1537711110 for iOS.I have created a subreddit https://www.reddit.com/r/Happyer/ to help easily address issues/bugs & to allow users to share their happy experiences :)
August 26, 2021 at 03:45AM by Dragonair_fruit1371
https://ift.tt/3sLgBuq
I developed a mental health related app from my personal experience!
So basically last year I was feeling a bit low. I really didn’t know how to become better since I had never faced this before. I used to not get proper sleep and woke up after having dreams due to my anxiety. So I just started noting what activities I did and whom I did it with in a google doc. Slowly I also started rating how I felt about the interaction. Soon I started to notice a pattern that I felt better when I hung out with some people and when I did certain activities. This way I was able to feel much better than before and I gained confidence that I can control my own mental health. I stopped dreaming as frequently since then. I even built an app for this so that other people can do the same .The app is called Happyer which was made based on the above experience and provides insights into impact of a given activity or friend. The app also has a "Find Therapist" feature using which you can contact our therapists for help.https://play.google.com/store/apps/details?id=com.happyer4life for android https://apps.apple.com/ca/app/happyer/id1537711110 for iOS.I have created a subreddit https://www.reddit.com/r/Happyer/ to help easily address issues/bugs & to allow users to share their happy experiences :)
August 26, 2021 at 03:45AM by Dragonair_fruit1371
https://ift.tt/3sLgBuq
Google Play
Happyer - Free Diary, Journal, Mood Tracker - Apps on Google Play
Keep a diary that also tracks your activities & friends to boost your happiness
New post on /r/flutterdev subreddit:
GameBoy Advance Emulation in Flutter
I'm interested in writing a gba emulator in Dart for Flutter. Does anyone know of any good examples or have some advice for making the emulator?
I've looked around a little bit and all I've found is a gameboy color emulator using an older version of Dart (so no null safety, but after a couple minor changes it works on macos) and a partial example using Rust
August 26, 2021 at 03:19AM by phant0mf1sh
https://ift.tt/3zkRlOf
GameBoy Advance Emulation in Flutter
I'm interested in writing a gba emulator in Dart for Flutter. Does anyone know of any good examples or have some advice for making the emulator?
I've looked around a little bit and all I've found is a gameboy color emulator using an older version of Dart (so no null safety, but after a couple minor changes it works on macos) and a partial example using Rust
August 26, 2021 at 03:19AM by phant0mf1sh
https://ift.tt/3zkRlOf
reddit
GameBoy Advance Emulation in Flutter
I'm interested in writing a gba emulator in Dart for Flutter. Does anyone know of any good examples or have some advice for making the emulator? ...
New post on /r/flutterdev subreddit:
how to adjust autocompletion in vscode
When I type a widget say Text or Container, etc and then put up that first "(", auto-completion shows me a bunch of options when I would rather press Enter to go to the next line, ie. I like to keep my code as formatted as possible while I type. But pushing Enter at this very moment actually tells auto-completion "I want that first named argument" so it gets written into my editor and I have to manually backspace every time.I don't believe this was a problem in Intellij nor Android Studio but for those I am just having performance issues as my laptop is not that old but not too powerful (the newest i3, 8G of RAM, SSD on Ubuntu). Is there any way for Autocomplete to give me a blank choice as the top option so when I do push Enter it chooses that and actually goes to the next line without anything written?P.S. I have tried some of the tuning measures for JetBrains IDE's introduced on S.O. and elsewhere but they only improved marginally so I am using VS Code.Also when that first named argument happens to be what I want, VS Code does not go to the next line automatically so I end up typing the entire width of the editor and only when I finish and match up all the braces does it do its auto-formatting which is also difficult to work with.
August 26, 2021 at 06:40AM by webNoob13
https://ift.tt/3kjv9O8
how to adjust autocompletion in vscode
When I type a widget say Text or Container, etc and then put up that first "(", auto-completion shows me a bunch of options when I would rather press Enter to go to the next line, ie. I like to keep my code as formatted as possible while I type. But pushing Enter at this very moment actually tells auto-completion "I want that first named argument" so it gets written into my editor and I have to manually backspace every time.I don't believe this was a problem in Intellij nor Android Studio but for those I am just having performance issues as my laptop is not that old but not too powerful (the newest i3, 8G of RAM, SSD on Ubuntu). Is there any way for Autocomplete to give me a blank choice as the top option so when I do push Enter it chooses that and actually goes to the next line without anything written?P.S. I have tried some of the tuning measures for JetBrains IDE's introduced on S.O. and elsewhere but they only improved marginally so I am using VS Code.Also when that first named argument happens to be what I want, VS Code does not go to the next line automatically so I end up typing the entire width of the editor and only when I finish and match up all the braces does it do its auto-formatting which is also difficult to work with.
August 26, 2021 at 06:40AM by webNoob13
https://ift.tt/3kjv9O8
reddit
r/FlutterDev - how to adjust autocompletion in vscode
2 votes and 4 comments so far on Reddit