New post on /r/flutterdev subreddit:
Flutter Tutorial - Flushbar Plugin & Top SnackBar (Tutorial)
https://www.youtube.com/watch?v=H-XEIkUfN4M
November 29, 2020 at 05:23PM by JohannesMilke
https://ift.tt/36l9srj
Flutter Tutorial - Flushbar Plugin & Top SnackBar (Tutorial)
https://www.youtube.com/watch?v=H-XEIkUfN4M
November 29, 2020 at 05:23PM by JohannesMilke
https://ift.tt/36l9srj
YouTube
Flutter Tutorial - Flushbar Plugin & Top SnackBar
Create powerful SnackBars with the Flushbar Plugin to notify users in Flutter.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/flushbar_example
- Buy My Courses:…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/flushbar_example
- Buy My Courses:…
New post on /r/flutterdev subreddit:
Understanding RXDart Streams
https://www.youtube.com/watch?v=dJydwMl57Ls&feature=share
November 29, 2020 at 08:05PM by bettdoug
https://ift.tt/3o8pT08
Understanding RXDart Streams
https://www.youtube.com/watch?v=dJydwMl57Ls&feature=share
November 29, 2020 at 08:05PM by bettdoug
https://ift.tt/3o8pT08
YouTube
Understanding RXDart Streams
RXDart is a powerful way to bring reactive state to your Flutter application. In this video we'll build a Sonnet reader application that will stream the sonn...
New post on /r/flutterdev subreddit:
A whole new social network platform written in flutter (Builds long term Relationships)
Hello devs. I have recently released a new social network platform called Looper. It connects users through their Personalities , creating long term Relationships. It uses the IBM Personality insights API for this Process . The App is available at the mean time only for android and will be released soon for ios.Here is the play store Link: https://play.google.com/store/apps/details?id=com.app.looper Of course Feedbacks are important. If you have one , please share it! Thanks , Hope you like it.
November 29, 2020 at 07:32PM by nkLoop2020
https://ift.tt/2VsYz0p
A whole new social network platform written in flutter (Builds long term Relationships)
Hello devs. I have recently released a new social network platform called Looper. It connects users through their Personalities , creating long term Relationships. It uses the IBM Personality insights API for this Process . The App is available at the mean time only for android and will be released soon for ios.Here is the play store Link: https://play.google.com/store/apps/details?id=com.app.looper Of course Feedbacks are important. If you have one , please share it! Thanks , Hope you like it.
November 29, 2020 at 07:32PM by nkLoop2020
https://ift.tt/2VsYz0p
Google Play
Looper - Apps on Google Play
Looper is a way of getting you around of amazing people. People who can understand you and who , you can create long term relation-friendship with them.
Using its amazing technology: The PND (Personality Neural Detector), Looper can identify People's personalities…
Using its amazing technology: The PND (Personality Neural Detector), Looper can identify People's personalities…
New post on /r/flutterdev subreddit:
Is there a way to pause streambuilder and start it programmatically
i have a streambuilder that connects to Algolia for data to bring back to my search page, my issue is that when it finds data it keeps refreshing the results constantly even if the user is not typing, think this would be annoying for the user, I need It to pause when it finds data and only refresh when the users start typing to give the user time to read through his resultshere is my code
November 29, 2020 at 08:52PM by OkManufacturer6506
https://ift.tt/3fOhYSB
Is there a way to pause streambuilder and start it programmatically
i have a streambuilder that connects to Algolia for data to bring back to my search page, my issue is that when it finds data it keeps refreshing the results constantly even if the user is not typing, think this would be annoying for the user, I need It to pause when it finds data and only refresh when the users start typing to give the user time to read through his resultshere is my code
StreamBuilder < List < AlgoliaObjectSnapshot >> ( stream: Stream.fromFuture(_operation(_searchTerm)), builder: (context, snapshot) { if (!snapshot.hasData) return Text("Start Typing", style: TextStyle(color: Colors.white), ); else { List < AlgoliaObjectSnapshot > currSearchStuff = snapshot.data; switch (snapshot.connectionState) { case ConnectionState.waiting: return Container(child: CircularProgressIndicator()); default: if (snapshot.hasError) return new Text('Error: ${snapshot.error}'); else return CustomScrollView(shrinkWrap: true, slivers: < Widget > [ SliverList( delegate: SliverChildBuilderDelegate( (context, index) { return _searchTerm.length > 0 ? DisplaySearchResult(artDes: currSearchStuff[index].data["name"], artistName: currSearchStuff[index].data["price"].toString(), genre: currSearchStuff[index].data["quantity"].toString(), ) : Container(); }, childCount: currSearchStuff.length ?? 0, ), ), ], ); } } }),
November 29, 2020 at 08:52PM by OkManufacturer6506
https://ift.tt/3fOhYSB
reddit
Is there a way to pause streambuilder and start it programmatically
i have a streambuilder that connects to Algolia for data to bring back to my search page, my issue is that when it finds data it keeps refreshing...
New post on /r/flutterdev subreddit:
How to become a Mobile / Flutter wizard?
Xposting in some of the other mobile subs for more answers hopefully, hope you don't mind!I'm a fairly long-term web developer, and have dipped into mobile a number of times but nothing serious.I am now in a position to lead the development of a mobile app version of our product that will go far beyond the scope of the web vision, since mobile handsets have so many exciting features like NFC / BLE / Cameras + Mics e.t.c...There is nobody in the company with mobile experience, but as a hobby I've made a few Flutter apps and other ones so I've been asked if I want to take command and drive this greenfield project - a very exciting opportunity.The problem is, as Flutter is quite new, there aren't exactly "Flutter in a Nutshell" equivalents to all the C# books I've read, and if I'm going to do this (and potentially hire others) I want to invest a LOT of time learning and become a Flutter expert over the next 12 months.On top of this, though, I feel like there are SO many other problems / architecture strategies / considerations to think of when you're a mobile developer over a web developer. I know about web-servers and docker containers and optimising performance for web etc, but I know nothing about the iOS and Android 'things' that expert mobile developers would know, such as developing for many many devices, the quirks of accessing cameras / bluetooth chips e.t.c, how to optimise for battery and performance, and all the gotchas like "what do I do about running my app in the background when a user always stays in Low Power mode" and things like that.Is there any kind of resource that teaches "Mobile Development" as a whole? Any kind of primer or bible for a mobile developer? As much as nothing beats experience and I will undoubtedly learn most on the job - I want to be as well prepared as possible, especially when designing the application!Thank you very much - I am super excited for the next year!
November 29, 2020 at 11:29PM by Vyper91
https://ift.tt/3fKHOqK
How to become a Mobile / Flutter wizard?
Xposting in some of the other mobile subs for more answers hopefully, hope you don't mind!I'm a fairly long-term web developer, and have dipped into mobile a number of times but nothing serious.I am now in a position to lead the development of a mobile app version of our product that will go far beyond the scope of the web vision, since mobile handsets have so many exciting features like NFC / BLE / Cameras + Mics e.t.c...There is nobody in the company with mobile experience, but as a hobby I've made a few Flutter apps and other ones so I've been asked if I want to take command and drive this greenfield project - a very exciting opportunity.The problem is, as Flutter is quite new, there aren't exactly "Flutter in a Nutshell" equivalents to all the C# books I've read, and if I'm going to do this (and potentially hire others) I want to invest a LOT of time learning and become a Flutter expert over the next 12 months.On top of this, though, I feel like there are SO many other problems / architecture strategies / considerations to think of when you're a mobile developer over a web developer. I know about web-servers and docker containers and optimising performance for web etc, but I know nothing about the iOS and Android 'things' that expert mobile developers would know, such as developing for many many devices, the quirks of accessing cameras / bluetooth chips e.t.c, how to optimise for battery and performance, and all the gotchas like "what do I do about running my app in the background when a user always stays in Low Power mode" and things like that.Is there any kind of resource that teaches "Mobile Development" as a whole? Any kind of primer or bible for a mobile developer? As much as nothing beats experience and I will undoubtedly learn most on the job - I want to be as well prepared as possible, especially when designing the application!Thank you very much - I am super excited for the next year!
November 29, 2020 at 11:29PM by Vyper91
https://ift.tt/3fKHOqK
reddit
How to become a Mobile / Flutter wizard?
Xposting in some of the other mobile subs for more answers hopefully, hope you don't mind! -- I'm a fairly long-term web developer, and have...
New post on /r/flutterdev subreddit:
Flappy Bird
Just my attempt to try out flame and flutter. Its a basic game replica utilizing only flame as a package.So, the code is pretty straight forwards, with quite flexibility on changing the background, pipe shapes, and even the bird icon. You can play around the project and come up with a new game altogether due to the flexbility of the project.https://github.com/shehriyarmalik/flappybird
November 29, 2020 at 11:17PM by shehriyar_
https://ift.tt/37pvb0C
Flappy Bird
Just my attempt to try out flame and flutter. Its a basic game replica utilizing only flame as a package.So, the code is pretty straight forwards, with quite flexibility on changing the background, pipe shapes, and even the bird icon. You can play around the project and come up with a new game altogether due to the flexbility of the project.https://github.com/shehriyarmalik/flappybird
November 29, 2020 at 11:17PM by shehriyar_
https://ift.tt/37pvb0C
GitHub
GitHub - shehriyarmalik/flappybird
Contribute to shehriyarmalik/flappybird development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter toolchain causes a lot of lags
I used VSCode with vim emulation and it was lagging so hard, I enabled previewLsp option, it was slightly better but I was waiting few seconds after pressing CMD+DOT to see options like, wrap with container and etc. Recently I switched to emacs and its the same. The only one without problems was Android Studio, but I don't like it, this IDE is so overwhelming. What do you use for programming in flutter?
November 29, 2020 at 11:05PM by gbaranski
https://ift.tt/2KJaNj6
Flutter toolchain causes a lot of lags
I used VSCode with vim emulation and it was lagging so hard, I enabled previewLsp option, it was slightly better but I was waiting few seconds after pressing CMD+DOT to see options like, wrap with container and etc. Recently I switched to emacs and its the same. The only one without problems was Android Studio, but I don't like it, this IDE is so overwhelming. What do you use for programming in flutter?
November 29, 2020 at 11:05PM by gbaranski
https://ift.tt/2KJaNj6
reddit
Flutter toolchain causes a lot of lags
I used VSCode with vim emulation and it was lagging so hard, I enabled previewLsp option, it was slightly better but I was waiting few seconds...
New post on /r/flutterdev subreddit:
Bluetooth vs NFC
I want to create a Flutter app that allows for communication between two mobile devices locally. I am currently sketching out the app and I am still deciding between Bluetooth and NFC. Is there a clear choice or will it depend on my app?
November 30, 2020 at 12:23AM by RohPan
https://ift.tt/2JooaEL
Bluetooth vs NFC
I want to create a Flutter app that allows for communication between two mobile devices locally. I am currently sketching out the app and I am still deciding between Bluetooth and NFC. Is there a clear choice or will it depend on my app?
November 30, 2020 at 12:23AM by RohPan
https://ift.tt/2JooaEL
reddit
Bluetooth vs NFC
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
A Breakdown of State Management Solutions in 2020 - Blog Post
https://ift.tt/2KSaTVO
November 30, 2020 at 02:23AM by anthOlei
https://ift.tt/2Vh1w44
A Breakdown of State Management Solutions in 2020 - Blog Post
https://ift.tt/2KSaTVO
November 30, 2020 at 02:23AM by anthOlei
https://ift.tt/2Vh1w44
Medium
Flutter State Management in 2021: When to Use What?
An updated list of where each solution shines, so you can be confident you picked the best state management solutions for your needs.
New post on /r/flutterdev subreddit:
How much do you charge for freelance work?
I had a friend recently asked me if I could help his startup to make an app. It's a food delivery app with users login, payment and a little bit of database management.Basically it's a full-stack project where I will need to develop the application with Flutter and develop a back-end using any technology of my choice.I estimate that I need around 3 - 5months to get this done and working, how much should I charge him? FYI, I am in Malaysia and Android Developer salary here are RM5k per month.
November 30, 2020 at 04:11AM by geminimarcus
https://ift.tt/36i5108
How much do you charge for freelance work?
I had a friend recently asked me if I could help his startup to make an app. It's a food delivery app with users login, payment and a little bit of database management.Basically it's a full-stack project where I will need to develop the application with Flutter and develop a back-end using any technology of my choice.I estimate that I need around 3 - 5months to get this done and working, how much should I charge him? FYI, I am in Malaysia and Android Developer salary here are RM5k per month.
November 30, 2020 at 04:11AM by geminimarcus
https://ift.tt/36i5108
reddit
How much do you charge for freelance work?
I had a friend recently asked me if I could help his startup to make an app. It's a food delivery app with users login, payment and a little bit...
New post on Flutter Dev Google group:
Toggle Button is not working for more than 3 buttons.
The toggle button is not working for more than 3 buttons. We have to change anything in this code other than isselect and icons. ToggleButton children:
Toggle Button is not working for more than 3 buttons.
The toggle button is not working for more than 3 buttons. We have to change anything in this code other than isselect and icons. ToggleButton children:
New post on /r/flutterdev subreddit:
Let’s make a list of the best plugins
Hey flutterdev, just wanted to hear from the community and see what people rank as the best plugins for some common/important features:1) Login screens2) menu organization3) messaging / chat4) map tools and location services5) payments
November 30, 2020 at 06:03AM by iftoxicthengtfo
https://ift.tt/2Vi8tla
Let’s make a list of the best plugins
Hey flutterdev, just wanted to hear from the community and see what people rank as the best plugins for some common/important features:1) Login screens2) menu organization3) messaging / chat4) map tools and location services5) payments
November 30, 2020 at 06:03AM by iftoxicthengtfo
https://ift.tt/2Vi8tla
reddit
Let’s make a list of the best plugins
Hey flutterdev, just wanted to hear from the community and see what people rank as the best plugins for some common/important features: 1) Login...
New post on /r/flutterdev subreddit:
Help with Firestore and google auth in flutter
Hii, I am working on an app in which i will let users to purchase the premium courses and i have google auth for them with firebase. In this firebase Firestore will save user name,email and role in database in which only role will change according to purchase. When user will buy premium course then his role will be changed from basic to expert. When the user opens the app it will check user role and acc. To user role it will assign the screen but when a new user is signing in then database is not creating data in firestore and role is tried calling null. But if we do it in google auth to update user data then the expert role of user will auto change to basic which will not be good. So, my question is that when a user signs in with google auth then how my app will check that if user already have his data in firestore or not, if yes then firestore data will be get and if not then it will create a new document in firestore. This should be happen with google sign in. It is easy o do if we uses email and password auth method but with google sign in it is hard because in this we cannot diffractiate between sign up and sign in the function is same for both new and existing users.So please if some one can help me then please help me with my problem it's very urgent 🙏🙏🙏
November 30, 2020 at 05:05AM by easily_know_it
https://ift.tt/3lmU5Tc
Help with Firestore and google auth in flutter
Hii, I am working on an app in which i will let users to purchase the premium courses and i have google auth for them with firebase. In this firebase Firestore will save user name,email and role in database in which only role will change according to purchase. When user will buy premium course then his role will be changed from basic to expert. When the user opens the app it will check user role and acc. To user role it will assign the screen but when a new user is signing in then database is not creating data in firestore and role is tried calling null. But if we do it in google auth to update user data then the expert role of user will auto change to basic which will not be good. So, my question is that when a user signs in with google auth then how my app will check that if user already have his data in firestore or not, if yes then firestore data will be get and if not then it will create a new document in firestore. This should be happen with google sign in. It is easy o do if we uses email and password auth method but with google sign in it is hard because in this we cannot diffractiate between sign up and sign in the function is same for both new and existing users.So please if some one can help me then please help me with my problem it's very urgent 🙏🙏🙏
November 30, 2020 at 05:05AM by easily_know_it
https://ift.tt/3lmU5Tc
reddit
Help with Firestore and google auth in flutter
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Early Dart support on Google Cloud Platform and Snackbars changes
https://ift.tt/2JmH66S
November 30, 2020 at 06:29AM by thehappyharis
https://ift.tt/3lnliFv
Early Dart support on Google Cloud Platform and Snackbars changes
https://ift.tt/2JmH66S
November 30, 2020 at 06:29AM by thehappyharis
https://ift.tt/3lnliFv
New post on /r/flutterdev subreddit:
Database that can effectively scale?
I'm recreating an entire app that was popular (top 100 in its category) but because of shoddy developer work has to be remade in order to scale.I am learning Flutter and the default recommended database is Firebase. However, it looks like Firebase gets really expensive fast once your usage ramps up. Am I misunderstanding the cost jumps or is there a potential (easy to learn) alternative?The app was getting thousands of sign ups a day before the database problems really started to show.edit: The app revolves around teams creating, reading, updating, and deleting calendar logs
November 30, 2020 at 08:43AM by refreshman1
https://ift.tt/33sQrRM
Database that can effectively scale?
I'm recreating an entire app that was popular (top 100 in its category) but because of shoddy developer work has to be remade in order to scale.I am learning Flutter and the default recommended database is Firebase. However, it looks like Firebase gets really expensive fast once your usage ramps up. Am I misunderstanding the cost jumps or is there a potential (easy to learn) alternative?The app was getting thousands of sign ups a day before the database problems really started to show.edit: The app revolves around teams creating, reading, updating, and deleting calendar logs
November 30, 2020 at 08:43AM by refreshman1
https://ift.tt/33sQrRM
reddit
Database that can effectively scale?
I'm recreating an entire app that was popular (top 100 in its category) but because of shoddy developer work has to be remade in order to...
New post on /r/flutterdev subreddit:
Supercharge your Flutter Apps with VelocityX
https://ift.tt/37k1zS7
November 30, 2020 at 08:25AM by polilluminato
https://ift.tt/3fN4hmQ
Supercharge your Flutter Apps with VelocityX
https://ift.tt/37k1zS7
November 30, 2020 at 08:25AM by polilluminato
https://ift.tt/3fN4hmQ
Flutter and Other Experiments
Supercharge your Flutter Apps with VelocityX
Hi everyone in this article I want to show you a package from Pawan Kumar, Google Dev Expert for Flutter & Dart, that you can use to supercharge your Flutter Apps and develop UI more easily and effectively.
Introducing VelocityX
VelocityX is a 100% ...
Introducing VelocityX
VelocityX is a 100% ...
New post on /r/flutterdev subreddit:
Flutter Smooth Parallax Effect For Login and Intro Screens
Hey, I've created simple easy parallax background for login and intro screens.
They're very easy to implement looks cool do check out.Post link - https://abhimortal6.medium.com/flutter-smooth-parallax-effect-for-login-and-intro-screens-10bf42073741
November 30, 2020 at 08:20AM by ab_hi_j
https://ift.tt/2JvXCRV
Flutter Smooth Parallax Effect For Login and Intro Screens
Hey, I've created simple easy parallax background for login and intro screens.
They're very easy to implement looks cool do check out.Post link - https://abhimortal6.medium.com/flutter-smooth-parallax-effect-for-login-and-intro-screens-10bf42073741
November 30, 2020 at 08:20AM by ab_hi_j
https://ift.tt/2JvXCRV
Medium
Flutter Smooth Parallax Effect For Login and Intro Screens
Have you seen Apple iOS’s parallax wallpaper? If you enable “Perspective Zoom” in your iOS’s wallpaper setting, you’ll find your…
New post on /r/flutterdev subreddit:
Internationalizing and Localizing your Flutter App
https://ift.tt/3qdPrL6
November 30, 2020 at 12:33PM by agnieszka_droids
https://ift.tt/33wlhc6
Internationalizing and Localizing your Flutter App
https://ift.tt/3qdPrL6
November 30, 2020 at 12:33PM by agnieszka_droids
https://ift.tt/33wlhc6
Droids On Roids
Internationalizing and Localizing your Flutter App – Guide for Developers
Guide on internationalizing and localizing a Flutter App. Follow our series and learn how to develop your first app with Flutter.
New post on /r/flutterdev subreddit:
Firebase Authentication and Flutter Full Course 2020
Firebase is a platform that provides the infrastructure needed to build apps fast. In this full video course, we will build a messaging app with Firebase Authentication and Flutter.
November 30, 2020 at 02:37PM by Fewthp
https://ift.tt/33qakJa
Firebase Authentication and Flutter Full Course 2020
Firebase is a platform that provides the infrastructure needed to build apps fast. In this full video course, we will build a messaging app with Firebase Authentication and Flutter.
November 30, 2020 at 02:37PM by Fewthp
https://ift.tt/33qakJa
Medium
Firebase Authentication and Flutter Full Course 2020
Build a messaging app for Android and Web platforms
New post on /r/flutterdev subreddit:
Flutter Smooth Parallax Effect For Login and Intro Screens
https://ift.tt/39qwmPL
November 30, 2020 at 03:39PM by ab_hi_j
https://ift.tt/3fTy3GS
Flutter Smooth Parallax Effect For Login and Intro Screens
https://ift.tt/39qwmPL
November 30, 2020 at 03:39PM by ab_hi_j
https://ift.tt/3fTy3GS
Medium
Flutter Smooth Parallax Effect For Login and Intro Screens
Have you seen Apple iOS’s parallax wallpaper? If you enable “Perspective Zoom” in your iOS’s wallpaper setting, you’ll find your…
New post on /r/flutterdev subreddit:
WebADB lets you run ADB right from your web browser
I generally develop on an iOS device and don't have much use for ADB. However every so often I need to run some ADB command to test something on an Android device, and I'm always struggling to reinstall ADB (I never have it from the time before 🙄It's always something else. New computer, messed up the PATH etc.)A friend of mine created a tool to use ADB directly in the browser. It's available at http://www.webadb.com/There was also just a writeup about it on the XDA DevelopersIt supports the following futures:APK installationInteractive shellScreen recordingSCRCPY — Control your device from your browserDevice informationFile managerEnabling ADB over WiFiMy favorite feature, though it's not yet ready for use is the web base SCRCPY. When I develop on an Android device, I don't like using an emulator as it's never as good as using a real device, however, I want it to interact with the device on my computer. This tool allows you to use SCRCPY directly in the browser. But there is still a delay, which he plans on fixing.Just note that it's still in beta and he has a bunch of cool plans in the roadmap.
November 30, 2020 at 03:14PM by ran_dom_coder
https://ift.tt/39wKM0P
WebADB lets you run ADB right from your web browser
I generally develop on an iOS device and don't have much use for ADB. However every so often I need to run some ADB command to test something on an Android device, and I'm always struggling to reinstall ADB (I never have it from the time before 🙄It's always something else. New computer, messed up the PATH etc.)A friend of mine created a tool to use ADB directly in the browser. It's available at http://www.webadb.com/There was also just a writeup about it on the XDA DevelopersIt supports the following futures:APK installationInteractive shellScreen recordingSCRCPY — Control your device from your browserDevice informationFile managerEnabling ADB over WiFiMy favorite feature, though it's not yet ready for use is the web base SCRCPY. When I develop on an Android device, I don't like using an emulator as it's never as good as using a real device, however, I want it to interact with the device on my computer. This tool allows you to use SCRCPY directly in the browser. But there is still a delay, which he plans on fixing.Just note that it's still in beta and he has a bunch of cool plans in the roadmap.
November 30, 2020 at 03:14PM by ran_dom_coder
https://ift.tt/39wKM0P
XDA Developers
WebADB lets you run ADB right from your web browser
XDA Forums user SteelToe has released a new web tool that allows you to perform all functionality provided by ADB right from your browser.