New post on /r/flutterdev subreddit:
Firebase real-time database with proper state management
Hi guys I am new to flutter but already have enough experience in the development site.Just a couple of months ago I started to learn a flutter so I can build my application but it's taking too much time, for now, I have really good hands in UI but I am still weak in the state management side.But now I don't have enough time to learn because I need to build my application soon that is why I need help from you guys and it's really helpful for me if anyone can help me to build proper state management with firebase real-time database with the provider ( or any other ). so I can use that in my projectsI know it's not the best way but I don't have enough time to learn so that is why I need help from you guys and I hope anyone can help me.
July 22, 2021 at 11:10PM by Prashant_4200
https://ift.tt/3xYF41d
Firebase real-time database with proper state management
Hi guys I am new to flutter but already have enough experience in the development site.Just a couple of months ago I started to learn a flutter so I can build my application but it's taking too much time, for now, I have really good hands in UI but I am still weak in the state management side.But now I don't have enough time to learn because I need to build my application soon that is why I need help from you guys and it's really helpful for me if anyone can help me to build proper state management with firebase real-time database with the provider ( or any other ). so I can use that in my projectsI know it's not the best way but I don't have enough time to learn so that is why I need help from you guys and I hope anyone can help me.
July 22, 2021 at 11:10PM by Prashant_4200
https://ift.tt/3xYF41d
reddit
r/FlutterDev - Firebase real-time database with proper state management
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
golf scorecard
Hi, I just finished a basic course of Flutter and I'm trying to create a golf scorecard app to practice. I'm just wondering what widget to use to create the scorecard itself. So far, I'm looking at DataTable but I can't seem to find documentation on how to retrieve data from it so I can
July 23, 2021 at 03:24AM by JC S Reyes
https://ift.tt/3y0vhI0
golf scorecard
Hi, I just finished a basic course of Flutter and I'm trying to create a golf scorecard app to practice. I'm just wondering what widget to use to create the scorecard itself. So far, I'm looking at DataTable but I can't seem to find documentation on how to retrieve data from it so I can
July 23, 2021 at 03:24AM by JC S Reyes
https://ift.tt/3y0vhI0
New post on /r/flutterdev subreddit:
Learn how to start writing the test cases in a flutter app with a simple example.
https://ift.tt/3rxyoVw
July 23, 2021 at 07:03AM by connectsteven
https://ift.tt/3BAVHCu
Learn how to start writing the test cases in a flutter app with a simple example.
https://ift.tt/3rxyoVw
July 23, 2021 at 07:03AM by connectsteven
https://ift.tt/3BAVHCu
Medium
Getting started with writing Test Cases in Flutter
Learn writing test cases in Flutter with simple examples.
New post on /r/flutterdev subreddit:
Getting started with writing Test Cases in Flutter
https://ift.tt/3rxyoVw
July 23, 2021 at 06:53AM by maria_garcia20
https://ift.tt/3iCrQkm
Getting started with writing Test Cases in Flutter
https://ift.tt/3rxyoVw
July 23, 2021 at 06:53AM by maria_garcia20
https://ift.tt/3iCrQkm
Medium
Getting started with writing Test Cases in Flutter
Learn writing test cases in Flutter with simple examples.
New post on Flutter Dev Google group:
Flutter on the Jetson Nano
Has anyone successfully built an applicaiton with a GUI on a Nvidia Jetson Nano with Flutter?
July 23, 2021 at 08:30AM by mmel...@gmail.com
https://ift.tt/36SVH2v
Flutter on the Jetson Nano
Has anyone successfully built an applicaiton with a GUI on a Nvidia Jetson Nano with Flutter?
July 23, 2021 at 08:30AM by mmel...@gmail.com
https://ift.tt/36SVH2v
New post on /r/flutterdev subreddit:
Flutter just reached 125k stars on GitHub
https://twitter.com/github_tracker/status/1418364051772608512?s=20
July 23, 2021 at 09:30AM by creativemaybeno
https://ift.tt/3rxINR4
Flutter just reached 125k stars on GitHub
https://twitter.com/github_tracker/status/1418364051772608512?s=20
July 23, 2021 at 09:30AM by creativemaybeno
https://ift.tt/3rxINR4
Twitter
GitHub Tracker
The *flutter/flutter* repo just crossed the 125k 🌟 milestone on #GitHub 🎉 Way to go @FlutterDev and congrats on reaching this epic milestone 💪#flutter #Dart github.com/flutter/flutter
New post on /r/flutterdev subreddit:
I made a gaming social network using Flutter
This post is not a list of the pros and cons of Flutter, I'm just sharing my experience.The project (I don't think I can post a link in the post so I'll post a comment with it)Long story short: I started learning coding on Reddit and after a few months I got a job as Android developer, but lost it because of the pandemic. Three of us got along really well so we wanted to create something together.We've created a social network that in the idea is kind of a Twitter and Reddit hybrid dedicated to gaming.
Some of the features (a lot more are to come) :Your followers can follow your activity and be notified when you are live on Twitch.You can create and follow events: whether it's a special streaming event, a gaming night with friends or a big Esports event.You can also post news and gameplay on a game's feed, the content will be visible to all followers of that game. ... and many other things. The app is in Beta, we are working on new features and a PC version.
DevelopmentWe are one Devops, and two devs. My friend is mostly focused on the backend part and I work on the mobile and desktop apps.
It was crucial for us to release the app on Android and iOS (and a bit later on desktop) fast enough with decent performance. But we didn’t have much time and we had limited resources so going native was not a viable solution. I gave Xamarin, React and Flutter a try and of course I picked the later. Even if React was more mature I chose Flutter because I had a better experience with it building a toy app, and because of the amazing community.ArchitectureI tried to copy what I was used to for Android development: MVVM with a pragmatic approach of Clean Architecture.To sum it up:
Datasource > Repository > Use case (where I do logic not related to the UI) > ViewModel (where I do logic related to the UI, this is a ChangeNotifier and I use Provider for state management) > UI (with no logic). With GetIt as a service locator.It's probably far from being perfect but it works for me, I have no problem to add features or to test, and that's the point.The worstRegarding features what I've struggled the most with lately was handling videos in a feed, mostly on Android. I had either poor performance or crashes. I ended up having only one instance of the video player at the time and I init it based on percentage of visibility and scroll velocity. But the behavior was different on both platforms so we have one player for each at the moment. We improved loading time with compression using FFMEG.Regarding Flutter, updating dependencies is a real nightmare. EVERY time I update there is trouble on iOS and I need to clear folders or update values here and there.The bestIt's really pleasant to code UI, if I ever have to go back to Android development I would have a hard time (or not with Compose!).StackFront: Flutter
Back: Golang, Gorilla, vanilla SQLAll in all I'm happy to have picked Flutter, and I'm really confident for its future.
The app has reached beta quality on mobile and an alpha release of the desktop version should be available in the coming months. Please comment if you have any questions!
July 23, 2021 at 10:51AM by chiracjack
https://ift.tt/3eLbFji
I made a gaming social network using Flutter
This post is not a list of the pros and cons of Flutter, I'm just sharing my experience.The project (I don't think I can post a link in the post so I'll post a comment with it)Long story short: I started learning coding on Reddit and after a few months I got a job as Android developer, but lost it because of the pandemic. Three of us got along really well so we wanted to create something together.We've created a social network that in the idea is kind of a Twitter and Reddit hybrid dedicated to gaming.
Some of the features (a lot more are to come) :Your followers can follow your activity and be notified when you are live on Twitch.You can create and follow events: whether it's a special streaming event, a gaming night with friends or a big Esports event.You can also post news and gameplay on a game's feed, the content will be visible to all followers of that game. ... and many other things. The app is in Beta, we are working on new features and a PC version.
DevelopmentWe are one Devops, and two devs. My friend is mostly focused on the backend part and I work on the mobile and desktop apps.
It was crucial for us to release the app on Android and iOS (and a bit later on desktop) fast enough with decent performance. But we didn’t have much time and we had limited resources so going native was not a viable solution. I gave Xamarin, React and Flutter a try and of course I picked the later. Even if React was more mature I chose Flutter because I had a better experience with it building a toy app, and because of the amazing community.ArchitectureI tried to copy what I was used to for Android development: MVVM with a pragmatic approach of Clean Architecture.To sum it up:
Datasource > Repository > Use case (where I do logic not related to the UI) > ViewModel (where I do logic related to the UI, this is a ChangeNotifier and I use Provider for state management) > UI (with no logic). With GetIt as a service locator.It's probably far from being perfect but it works for me, I have no problem to add features or to test, and that's the point.The worstRegarding features what I've struggled the most with lately was handling videos in a feed, mostly on Android. I had either poor performance or crashes. I ended up having only one instance of the video player at the time and I init it based on percentage of visibility and scroll velocity. But the behavior was different on both platforms so we have one player for each at the moment. We improved loading time with compression using FFMEG.Regarding Flutter, updating dependencies is a real nightmare. EVERY time I update there is trouble on iOS and I need to clear folders or update values here and there.The bestIt's really pleasant to code UI, if I ever have to go back to Android development I would have a hard time (or not with Compose!).StackFront: Flutter
Back: Golang, Gorilla, vanilla SQLAll in all I'm happy to have picked Flutter, and I'm really confident for its future.
The app has reached beta quality on mobile and an alpha release of the desktop version should be available in the coming months. Please comment if you have any questions!
July 23, 2021 at 10:51AM by chiracjack
https://ift.tt/3eLbFji
reddit
I made a gaming social network using Flutter
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Flutter Hosting is coming to make sharing app with clients easier!
https://twitter.com/Kubenqpl/status/1418511213370167296
July 23, 2021 at 12:12PM by kubenqpl
https://ift.tt/3Bqr2aG
Flutter Hosting is coming to make sharing app with clients easier!
https://twitter.com/Kubenqpl/status/1418511213370167296
July 23, 2021 at 12:12PM by kubenqpl
https://ift.tt/3Bqr2aG
Twitter
Kuba Neukirch 💙
Let's make it official. We continue working on FlutterHost with @oskarkramarz Here is screenshot from working demo. @Firebase is compatible with our SaaS for easy sharing Flutter apps with your clients! Video coming next week. #flutter #flutterdev #freelance…
New post on /r/flutterdev subreddit:
Flutter 101
https://youtu.be/EwrXkljlFR4
July 23, 2021 at 12:54PM by plangora
https://ift.tt/2UzNVbk
Flutter 101
https://youtu.be/EwrXkljlFR4
July 23, 2021 at 12:54PM by plangora
https://ift.tt/2UzNVbk
YouTube
Flutter 101 - Flying High with Flutter #16
Hi everyone! We had a great time with Vince Varga. In this episode, Vince talked about his Flutter career and some good tips on using Flutter, and we found his sharing totally insightful. Watch the video now and share it with your friends!
Shownotes:
h…
Shownotes:
h…
New post on /r/flutterdev subreddit:
App Feedback Thread - July 23, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
July 23, 2021 at 03:00PM by AutoModerator
https://ift.tt/3BwdUkl
App Feedback Thread - July 23, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
July 23, 2021 at 03:00PM by AutoModerator
https://ift.tt/3BwdUkl
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Controlling LEDs with Flutter
https://youtu.be/eib_62D-kSA
July 23, 2021 at 02:43PM by tadaspetra
https://ift.tt/3BI65bF
Controlling LEDs with Flutter
https://youtu.be/eib_62D-kSA
July 23, 2021 at 02:43PM by tadaspetra
https://ift.tt/3BI65bF
YouTube
Control Lights with Flutter
Bluetooth and Flutter might not seem like they would work well, but actually it's pretty simple. Using and Arduino Uno Wifi Rev2 and a Flutter App we are able to control an LED. Even though this is a relatively simple example, once you figure this out, there…
New post on Flutter Dev Google group:
Flutter Firebase - Huge Errors...
Hi Everyone. First time with Firebase and holy moly.. Not sure what i've deserved to get this but what on earth is going on? I've tried cleaning the build when I do that I find the configurations that I've saved for IOS deployment IOS 10, seem to revert every time.. I've tried using Doctor
July 23, 2021 at 04:05PM by Bridget Kelly O'Sheehan
https://ift.tt/3wZAY7C
Flutter Firebase - Huge Errors...
Hi Everyone. First time with Firebase and holy moly.. Not sure what i've deserved to get this but what on earth is going on? I've tried cleaning the build when I do that I find the configurations that I've saved for IOS deployment IOS 10, seem to revert every time.. I've tried using Doctor
July 23, 2021 at 04:05PM by Bridget Kelly O'Sheehan
https://ift.tt/3wZAY7C
New post on /r/flutterdev subreddit:
70+ Tips and Tricks for Flutter developers 😲🤫🙀
https://youtu.be/hDVZykwl13I
July 23, 2021 at 05:46PM by Adventurous_Author32
https://ift.tt/3i07rXm
70+ Tips and Tricks for Flutter developers 😲🤫🙀
https://youtu.be/hDVZykwl13I
July 23, 2021 at 05:46PM by Adventurous_Author32
https://ift.tt/3i07rXm
YouTube
Top 70 Flutter Tips, Widgets & Packages
Master app development 👉 https://fluttermapp.com/
Flutter Best Tips and Tricks for any Flutter Developer. Best Practices, Widgets, Plugins, Tips and Tricks with Flutter will be deliver into this Video. In other words, in this In this video, we will show…
Flutter Best Tips and Tricks for any Flutter Developer. Best Practices, Widgets, Plugins, Tips and Tricks with Flutter will be deliver into this Video. In other words, in this In this video, we will show…
New post on /r/flutterdev subreddit:
Flutter on Linux
So I searched a bit and you can develop Flutter apps in Linux I have a triple boot on my computer (windows/pop os(ubuntu)/manjaro(arch)) and I don't want, if possible, to use windows. What should I use? And I have another question: which desktop environment should I use? I have installed kde, gnome and cinnamon.(I reposted it under discussion because it was removed, don't ban me i'm new to this sub)
July 23, 2021 at 05:30PM by Inccool8
https://ift.tt/3eMAueI
Flutter on Linux
So I searched a bit and you can develop Flutter apps in Linux I have a triple boot on my computer (windows/pop os(ubuntu)/manjaro(arch)) and I don't want, if possible, to use windows. What should I use? And I have another question: which desktop environment should I use? I have installed kde, gnome and cinnamon.(I reposted it under discussion because it was removed, don't ban me i'm new to this sub)
July 23, 2021 at 05:30PM by Inccool8
https://ift.tt/3eMAueI
reddit
Flutter on Linux
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
July 23, 2021 at 07:02PM by diyar_gulli
https://ift.tt/3iFLHit
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
July 23, 2021 at 07:02PM by diyar_gulli
https://ift.tt/3iFLHit
reddit
Flutter apps work with android tv so why flutter don't have good...
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
New post on /r/flutterdev subreddit:
Flutter Shadow Widget | 3D Shadow Flutter | Button Shadow | Inner Box Sh...
https://youtube.com/watch?v=wn0la1-wNdg&feature=share
July 23, 2021 at 06:24PM by DBestech
https://ift.tt/36XksKM
Flutter Shadow Widget | 3D Shadow Flutter | Button Shadow | Inner Box Sh...
https://youtube.com/watch?v=wn0la1-wNdg&feature=share
July 23, 2021 at 06:24PM by DBestech
https://ift.tt/36XksKM
YouTube
Flutter Shadow Widget | 3D Shadow Flutter | Button Shadow | Inner Box Shadow
Here, you will learn how to create custom shadow in flutter. It's like an inner shadow or neumorphic design. You can use this design to decorate any custom widget and apply multiple shadows to create 3D view or widget.
This idea you can use to create beautiful…
This idea you can use to create beautiful…
New post on /r/flutterdev subreddit:
An Audio Recorder and Player with Flutter
https://youtube.com/watch?v=FYlEKq-TTBg&feature=share
July 23, 2021 at 07:35PM by faizollah
https://ift.tt/3iGivYD
An Audio Recorder and Player with Flutter
https://youtube.com/watch?v=FYlEKq-TTBg&feature=share
July 23, 2021 at 07:35PM by faizollah
https://ift.tt/3iGivYD
YouTube
An Audio Recorder and Player with Flutter
It is exciting to develop a Flutter application to record and play the audio. In this video, we are going to develop a Flutter application and use 2 packages to record audio and play that audio.
Resources:
Link to the code: https://github.com/faizollah…
Resources:
Link to the code: https://github.com/faizollah…
New post on /r/flutterdev subreddit:
Build Flutter Apps Effortlessly Using FlutterFlow
https://youtu.be/3OBQq-mfLpU
July 23, 2021 at 08:22PM by mheshm
https://ift.tt/36WtFTD
Build Flutter Apps Effortlessly Using FlutterFlow
https://youtu.be/3OBQq-mfLpU
July 23, 2021 at 08:22PM by mheshm
https://ift.tt/36WtFTD
YouTube
Build Flutter Apps Effortlessly Using FlutterFlow
FlutterFlow enables creators and entrepreneurs to build mobile apps visually with ease. FlutterFlow is an online no-code platform that empowers people to build native mobile applications that run on both iOS and Android. They are taking state-of-the-art technologies…
New post on /r/flutterdev subreddit:
How To Pick Up Flutter
https://ift.tt/3kOIobr
July 23, 2021 at 09:18PM by fredgrott
https://ift.tt/2UBETKW
How To Pick Up Flutter
https://ift.tt/3kOIobr
July 23, 2021 at 09:18PM by fredgrott
https://ift.tt/2UBETKW
Medium
How To Pick Up Flutter
Google has a way to pick up flutter by showing a few widget examples. But, your goal is to pick up enough flutter to build a full…
New post on /r/flutterdev subreddit:
Video Optimization
I’m coming from angular background, using ionic for cross platform purposes. I know it’s not popular so I want to migrate my slow social app. I’m not a mobile dev by any means.I’ve read some posts here on video performance, some mentioned using chewieFlutter is my top choice now (yes this is the x vs y post). Before I migrate completely, I was wondering if flutter would be a good case scenario or should I go completely native. I would be having videos of some unknown length, up to an hour or two.Ive read some unhappy comments on scrolling. And we all know, scrolling is quite important in a social media app. You want to scroll and see the next vid to optimize user experiences.I want to know people’s experiences are for such scenarios on flutter, before I dive completely in.
July 24, 2021 at 01:02AM by Raspberry_64713
https://ift.tt/3BzNBtv
Video Optimization
I’m coming from angular background, using ionic for cross platform purposes. I know it’s not popular so I want to migrate my slow social app. I’m not a mobile dev by any means.I’ve read some posts here on video performance, some mentioned using chewieFlutter is my top choice now (yes this is the x vs y post). Before I migrate completely, I was wondering if flutter would be a good case scenario or should I go completely native. I would be having videos of some unknown length, up to an hour or two.Ive read some unhappy comments on scrolling. And we all know, scrolling is quite important in a social media app. You want to scroll and see the next vid to optimize user experiences.I want to know people’s experiences are for such scenarios on flutter, before I dive completely in.
July 24, 2021 at 01:02AM by Raspberry_64713
https://ift.tt/3BzNBtv
reddit
Video Optimization
I’m coming from angular background, using ionic for cross platform purposes. I know it’s not popular so I want to migrate my slow social app. I’m...
New post on /r/flutterdev subreddit:
Flutter Security Tooling
Are there any good security tools out that currently support dart/flutter?It seems as though there is very little support in the form of code scanning tools right now which is leading to some hesitancy about adopting flutter as our framework. Curious to know if other developers have found any tools to help tighten things up from a security standpoint?
July 24, 2021 at 12:19AM by bh-throwaway-fosho
https://ift.tt/3y2qYfj
Flutter Security Tooling
Are there any good security tools out that currently support dart/flutter?It seems as though there is very little support in the form of code scanning tools right now which is leading to some hesitancy about adopting flutter as our framework. Curious to know if other developers have found any tools to help tighten things up from a security standpoint?
July 24, 2021 at 12:19AM by bh-throwaway-fosho
https://ift.tt/3y2qYfj
reddit
Flutter Security Tooling
Are there any good security tools out that currently support dart/flutter? It seems as though there is very little support in the form of code...