New post on /r/flutterdev subreddit:
Accidentally debugging way down in the Dart SDK #shorts
https://youtube.com/watch?v=8NgMakWUAOE&feature=share
July 22, 2021 at 08:07PM by Pixelreddit
https://ift.tt/3zqbJ02
Accidentally debugging way down in the Dart SDK #shorts
https://youtube.com/watch?v=8NgMakWUAOE&feature=share
July 22, 2021 at 08:07PM by Pixelreddit
https://ift.tt/3zqbJ02
YouTube
Accidentally debugging way down in the Dart SDK #shorts
Subscribe to the Flutter channel → https://goo.gle/FlutterYT
product: Flutter - Testing and Debugging - Handling errors, Flutter - Testing and Debugging - Testing; fullname: Andrew Fitz Gibbon, Filip Hracek; re_ty: Publish;
product: Flutter - Testing and Debugging - Handling errors, Flutter - Testing and Debugging - Testing; fullname: Andrew Fitz Gibbon, Filip Hracek; re_ty: Publish;
New tweet from FlutterDev:
✨ #BoringShow Ep. 50: Picking up where we left off 🐞 Catch @filiphracek and @Fitzface as they attempt to fully upgrade the Hacker News app and address the runtime bug they saw at the end of the previous episode. Will they figure it out? Watch 📺 → https://t.co/LFLYHqTusA https://t.co/S2wptd2sVN— Flutter (@FlutterDev) Jul 22, 2021
July 22, 2021 at 09:05PM
http://twitter.com/FlutterDev/status/1418286079816486916
✨ #BoringShow Ep. 50: Picking up where we left off 🐞 Catch @filiphracek and @Fitzface as they attempt to fully upgrade the Hacker News app and address the runtime bug they saw at the end of the previous episode. Will they figure it out? Watch 📺 → https://t.co/LFLYHqTusA https://t.co/S2wptd2sVN— Flutter (@FlutterDev) Jul 22, 2021
July 22, 2021 at 09:05PM
http://twitter.com/FlutterDev/status/1418286079816486916
YouTube
Finding the importance of proper null safety migration (The Boring Flutter Development Show, Ep. 50)
Filip and Fitz attempt to fully upgrade the Hacker News app, and address the runtime bug they saw at the end of the previous episode. This adventure takes them to fun places, such as the internal implementation of string interpolation in Dart SDK, and at…
New post on /r/flutterdev subreddit:
How many are too many packages?
No seriously I know it's efficient and all and like saves time and money but when are you using too many packages it becomes a liability? Love to hear your thoughts as I'm sure we all have different opinions on this.
July 22, 2021 at 09:37PM by sabaybayin
https://ift.tt/3zrT3Nc
How many are too many packages?
No seriously I know it's efficient and all and like saves time and money but when are you using too many packages it becomes a liability? Love to hear your thoughts as I'm sure we all have different opinions on this.
July 22, 2021 at 09:37PM by sabaybayin
https://ift.tt/3zrT3Nc
reddit
How many are too many packages?
No seriously I know it's efficient and all and like saves time and money but when are you using too many packages it becomes a liability? Love to...
New post on /r/flutterdev subreddit:
Listview problem , im new to flutter
can someone help me with my code .class Home extends StatelessWidget {
final List<WidgetTiles> widgetTilesList = [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
];
u/override
Widget build(BuildContext context) {
return Scaffold(
body: ListView(
children: [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
],
),
);
}
}
class WidgetTiles extends StatelessWidget {
WidgetTiles({this.name, this.color});
final String name;
final Color color;
@override
Widget build(BuildContext context) {
return Container(
color: color,
child: ListTile(
leading: Text(name),
),
);
}
}
why is the list not showing when i run .
July 22, 2021 at 10:29PM by ball-sack-patato
https://ift.tt/2Uvy51r
Listview problem , im new to flutter
can someone help me with my code .class Home extends StatelessWidget {
final List<WidgetTiles> widgetTilesList = [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
];
u/override
Widget build(BuildContext context) {
return Scaffold(
body: ListView(
children: [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
],
),
);
}
}
class WidgetTiles extends StatelessWidget {
WidgetTiles({this.name, this.color});
final String name;
final Color color;
@override
Widget build(BuildContext context) {
return Container(
color: color,
child: ListTile(
leading: Text(name),
),
);
}
}
why is the list not showing when i run .
July 22, 2021 at 10:29PM by ball-sack-patato
https://ift.tt/2Uvy51r
reddit
Listview problem , im new to flutter
can someone help me with my code . class Home extends StatelessWidget { final List<WidgetTiles> widgetTilesList = \[ ...
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…