New post on Flutter Dev Google group:
Playing audio in Flutter - best practices?
Hi all, It seems that there is no official / core flutter library for playing audio within the framework. Is this correct? If so, what is the usual approach for playing audio? Are there any de facto standards even though no official one is available? I am writing material on this, so I would
October 27, 2020 at 09:43PM by Federico Mestrone
https://ift.tt/35IUn0W
Playing audio in Flutter - best practices?
Hi all, It seems that there is no official / core flutter library for playing audio within the framework. Is this correct? If so, what is the usual approach for playing audio? Are there any de facto standards even though no official one is available? I am writing material on this, so I would
October 27, 2020 at 09:43PM by Federico Mestrone
https://ift.tt/35IUn0W
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
How to build responsive layout in Flutter
https://ift.tt/3kChUa9
October 27, 2020 at 09:59PM by Cr0c0lia
https://ift.tt/2G56mxh
How to build responsive layout in Flutter
https://ift.tt/3kChUa9
October 27, 2020 at 09:59PM by Cr0c0lia
https://ift.tt/2G56mxh
Codemagic blog
How to build responsive layout in Flutter | Codemagic Blog
There is no hard-and-fast rule for designing a responsive layout in Flutter. But there are many approaches that you can follow while designing such a layout. Learn more!
New post on /r/flutterdev subreddit:
React Context vs Flutter Provider
Hi Everyone!React Context API look very like Flutter Provider. So they are both use for state management? There is any difference in how to use?Thanks!
October 27, 2020 at 11:14PM by Flutter_Dev
https://ift.tt/34wiBfI
React Context vs Flutter Provider
Hi Everyone!React Context API look very like Flutter Provider. So they are both use for state management? There is any difference in how to use?Thanks!
October 27, 2020 at 11:14PM by Flutter_Dev
https://ift.tt/34wiBfI
legacy.reactjs.org
Context – React
A JavaScript library for building user interfaces
New post on /r/flutterdev subreddit:
A finite state machine for dart.
FMS2 provides an implementation of the core design aspects of the UML state diagrams. FMS2 is derived from the FSM library which in turn was inspired by Tinder StateMachine library. FMS2 allows a user to declare each transition or provide dynamic transitions. FMS2 support Guard Conditions from the UML 2 specification.
October 28, 2020 at 12:39AM by bsutto
https://ift.tt/35E21dc
A finite state machine for dart.
FMS2 provides an implementation of the core design aspects of the UML state diagrams. FMS2 is derived from the FSM library which in turn was inspired by Tinder StateMachine library. FMS2 allows a user to declare each transition or provide dynamic transitions. FMS2 support Guard Conditions from the UML 2 specification.
dart import 'package:fsm2/fsm2.dart'; void main() { final machine = StateMachine.create((g) => g ..initialState(Solid()) ..state<Solid>((b) => b ..on<OnHeat>((s,e) => b.transitionTo(Liquid()) condition: s.temperature + e.deltaDegrees > 0) ..on<OnHeat>((s,e) => b.transitionTo(Boiling()) condition: s.temperature + e.deltaDegrees > 100) ..on<OnMelted>((s, e) => b.transitionTo(Liquid()))) ));
Github:https://github.com/bsutton/fsm2Pub.devhttps://pub.dev/packages/fsm2October 28, 2020 at 12:39AM by bsutto
https://ift.tt/35E21dc
GitHub
GitHub - Tinder/StateMachine: A Kotlin and Swift DSL for finite state machine
A Kotlin and Swift DSL for finite state machine. Contribute to Tinder/StateMachine development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Trying to get 100 subs on my Flutter YouTube Channel before I fall asleep!
P.S. New Flutter Quiz Video coming out this week!I am starting to pump out more Flutter content since that seems to be what my viewers want. I'll be posting a "How to build a Flutter Quiz app" tutorial sometime this week so if you want to stay up to date on that or want to support my channel, I would appreciate a sub! I'm trying to pump out 1 video a week, hopefully Flutter content, though I also focus on other things like JavaScript and Python!Channel: https://www.youtube.com/channel/UCssjVN1pKWJU5ExxS72ZZcgEdit: Just got 100th, but feel free to keep subscribing if you like my content anyways!
October 28, 2020 at 05:44AM by AphrxWasHere
https://ift.tt/31OqZW8
Trying to get 100 subs on my Flutter YouTube Channel before I fall asleep!
P.S. New Flutter Quiz Video coming out this week!I am starting to pump out more Flutter content since that seems to be what my viewers want. I'll be posting a "How to build a Flutter Quiz app" tutorial sometime this week so if you want to stay up to date on that or want to support my channel, I would appreciate a sub! I'm trying to pump out 1 video a week, hopefully Flutter content, though I also focus on other things like JavaScript and Python!Channel: https://www.youtube.com/channel/UCssjVN1pKWJU5ExxS72ZZcgEdit: Just got 100th, but feel free to keep subscribing if you like my content anyways!
October 28, 2020 at 05:44AM by AphrxWasHere
https://ift.tt/31OqZW8
New post on /r/flutterdev subreddit:
What does this selection in Android studio mean?
Screenshot: https://imgur.com/a/y5BloDZWhat will happen if I check that?
What will happen if I UNcheck that?
October 28, 2020 at 09:26AM by night-robin
https://ift.tt/3oBD7mX
What does this selection in Android studio mean?
Screenshot: https://imgur.com/a/y5BloDZWhat will happen if I check that?
What will happen if I UNcheck that?
October 28, 2020 at 09:26AM by night-robin
https://ift.tt/3oBD7mX
Imgur
Post with 12 views.
New post on /r/flutterdev subreddit:
<b>Flutter with 1 year - lesson learned and still struggling</b>
It's my first full-time programming with my colleague. Previously I just copy and paste javascript sometimes. At this work, the App has been 5k+ loc and 3k commit.Working with Flutter was mostly a fun time. As everyone will feel, the UI implementation was really natural.Bloc pattern (Library is not used) and Provider are used. When using Stream, especially if you don't care about dispose or cancel, it was difficult to fix this because the listener was alive with a memory leak.```dart class SomeBloc implements Disposable {final StreamController ctrl = StreamController();StreamSubscription subs;SomeBloc() { subs = repository.data.listen((x) { if (x > 3) ctrl.sink.add(x); }); }// 🚫⚠️🚫⚠️🚫⚠️ Alaways do cancel and close. dispose() async { await subs.cancel(); await ctrl.close(); } } ```In particular, after listening, I felt that the async operation is a very dangerous operation. I think a language that directly manages memory should care about resource release in like this.```dart // Stream with async operation is hard to debug 😭 var subs = someStream.listen.((x) { var url = await getFromFirestorePathToUrl(x); await player.load(url);// if you have to cancel an operation, it is tough to get correct. if (isPlayerPlaying) return; await player.play(); }); ```RxDart was very helpful. In most cases, CombineLatest was used to receive multiple streams and deliver them to the view.```dart // ❤️ Rx combineLatest // ✌️ Miss js destructuring assignment // const [profile, content, isSelected] = snapshot.dataStreamBuilder<List>( stream: Rx.combineLatest3(profileBloc.profile, repository.content, bloc.isSheSelected, (a, b, c) => [a, b, c]), builder: (context, snapshot) { if (snapshot.hasData && snapshot.isNotEmpty) { Profile profile = snapshot.data[0]; Content content = snapshot.data[1]; bool isSelected = snapshot.data[2]; return Post(profile, content, isSelected); } else { return CircularProgressIndicator(); } } ); ```I want to know it is passable to convert Stream<List<Stream<Object>>> to Stream<List<Object>>. If it can be, please let me know. Perhaps it is about traverse in functional programming.```dart // Is this passable? // traverse:: Stream<List<Stream<Object>>> -> Stream<List<Object>>Stream<List<MetaPost>> metaPosts(String id) => repository.metaPosts; Stream<Post> post(String id) => repository.post;Stream<List<Stream<Post>>> postFromMetaPosts(String id) { return metaPosts(id).map((metas) { return metas.map((meta) { return post(meta.id); }).toList(); }); }Stream<List<post>> postFromMetaPosts2(String id) { // ?? } ```Provider was mostly used for dependency injection, but it was inconvenient to distinguish between context.read and context.watch. I thought it would be nice to have a Provider that is only provided for DI use. Or maybe I should use another library or just use InheritedWidget.``dart // I always set providers ininitStatewithcontext.read` class _SomeStateWidgetState extends State<SomeStateWidget> { Repository _repo; AuthBloc _auth; SomeStateWidgetBloc _bloc;@override void initState() { _repo = context.read<Repository>(); _auth = context.read<AuthBloc>(); _bloc = context.read<SomeStateWidgetBloc>(); super.initState(); } @override Widget build(BuildContext context) { return ListView( children: [ Post(_bloc.isSelected, _auth.currentUserId), // 👌safe _chip(), ] ); }Widget _chip() { return Chip( _auth.currentUserId, // 👌safe onTap: () async { bool isDeleted = await _repo.isDeleted(); // 👌safe print(isDeleted); }) } }// But still hard in stateless widget class SomeStatelessWidget extends StatelessWidget { const SomeStatelessWidget({Key key}) : super(key: key);@override Widget build(BuildContext context) { var _auth = context.watch<AuthBloc>(); // 👻watch var _bloc = context.watch<SomeStatelessWidgetBloc>(); //…
<b>Flutter with 1 year - lesson learned and still struggling</b>
It's my first full-time programming with my colleague. Previously I just copy and paste javascript sometimes. At this work, the App has been 5k+ loc and 3k commit.Working with Flutter was mostly a fun time. As everyone will feel, the UI implementation was really natural.Bloc pattern (Library is not used) and Provider are used. When using Stream, especially if you don't care about dispose or cancel, it was difficult to fix this because the listener was alive with a memory leak.```dart class SomeBloc implements Disposable {final StreamController ctrl = StreamController();StreamSubscription subs;SomeBloc() { subs = repository.data.listen((x) { if (x > 3) ctrl.sink.add(x); }); }// 🚫⚠️🚫⚠️🚫⚠️ Alaways do cancel and close. dispose() async { await subs.cancel(); await ctrl.close(); } } ```In particular, after listening, I felt that the async operation is a very dangerous operation. I think a language that directly manages memory should care about resource release in like this.```dart // Stream with async operation is hard to debug 😭 var subs = someStream.listen.((x) { var url = await getFromFirestorePathToUrl(x); await player.load(url);// if you have to cancel an operation, it is tough to get correct. if (isPlayerPlaying) return; await player.play(); }); ```RxDart was very helpful. In most cases, CombineLatest was used to receive multiple streams and deliver them to the view.```dart // ❤️ Rx combineLatest // ✌️ Miss js destructuring assignment // const [profile, content, isSelected] = snapshot.dataStreamBuilder<List>( stream: Rx.combineLatest3(profileBloc.profile, repository.content, bloc.isSheSelected, (a, b, c) => [a, b, c]), builder: (context, snapshot) { if (snapshot.hasData && snapshot.isNotEmpty) { Profile profile = snapshot.data[0]; Content content = snapshot.data[1]; bool isSelected = snapshot.data[2]; return Post(profile, content, isSelected); } else { return CircularProgressIndicator(); } } ); ```I want to know it is passable to convert Stream<List<Stream<Object>>> to Stream<List<Object>>. If it can be, please let me know. Perhaps it is about traverse in functional programming.```dart // Is this passable? // traverse:: Stream<List<Stream<Object>>> -> Stream<List<Object>>Stream<List<MetaPost>> metaPosts(String id) => repository.metaPosts; Stream<Post> post(String id) => repository.post;Stream<List<Stream<Post>>> postFromMetaPosts(String id) { return metaPosts(id).map((metas) { return metas.map((meta) { return post(meta.id); }).toList(); }); }Stream<List<post>> postFromMetaPosts2(String id) { // ?? } ```Provider was mostly used for dependency injection, but it was inconvenient to distinguish between context.read and context.watch. I thought it would be nice to have a Provider that is only provided for DI use. Or maybe I should use another library or just use InheritedWidget.``dart // I always set providers ininitStatewithcontext.read` class _SomeStateWidgetState extends State<SomeStateWidget> { Repository _repo; AuthBloc _auth; SomeStateWidgetBloc _bloc;@override void initState() { _repo = context.read<Repository>(); _auth = context.read<AuthBloc>(); _bloc = context.read<SomeStateWidgetBloc>(); super.initState(); } @override Widget build(BuildContext context) { return ListView( children: [ Post(_bloc.isSelected, _auth.currentUserId), // 👌safe _chip(), ] ); }Widget _chip() { return Chip( _auth.currentUserId, // 👌safe onTap: () async { bool isDeleted = await _repo.isDeleted(); // 👌safe print(isDeleted); }) } }// But still hard in stateless widget class SomeStatelessWidget extends StatelessWidget { const SomeStatelessWidget({Key key}) : super(key: key);@override Widget build(BuildContext context) { var _auth = context.watch<AuthBloc>(); // 👻watch var _bloc = context.watch<SomeStatelessWidgetBloc>(); //…
New post on Flutter Dev Google group:
Different resolutions of images in flutter
Can someone help me with images management in asset folder. i don't want to declare all .pngs to my pubspec.yaml. it would be very difficult to declare. currently not taking any image from asset directory. any help would be appriciated.
October 28, 2020 at 11:32AM by Sony Kishan
https://ift.tt/37L6HR6
Different resolutions of images in flutter
Can someone help me with images management in asset folder. i don't want to declare all .pngs to my pubspec.yaml. it would be very difficult to declare. currently not taking any image from asset directory. any help would be appriciated.
October 28, 2020 at 11:32AM by Sony Kishan
https://ift.tt/37L6HR6
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Why doesn't flutter adds column/row spacing?
Context: https://github.com/flutter/flutter/issues/16957TLDR;The problem: Flutter rows and columns don't have spacing, hence padding and SizedBox should be used. As mostly they are generated from lists, it requires extra attention for a MUNDANE thing.The argument given by some people is "performance", IMO spacing property can save from doubling the children in a row/column which inserting a SizedBox produces.
October 28, 2020 at 11:00AM by Particular-Train502
https://ift.tt/3mswiSX
Why doesn't flutter adds column/row spacing?
Context: https://github.com/flutter/flutter/issues/16957TLDR;The problem: Flutter rows and columns don't have spacing, hence padding and SizedBox should be used. As mostly they are generated from lists, it requires extra attention for a MUNDANE thing.The argument given by some people is "performance", IMO spacing property can save from doubling the children in a row/column which inserting a SizedBox produces.
October 28, 2020 at 11:00AM by Particular-Train502
https://ift.tt/3mswiSX
GitHub
Add spacing parameter to Row/Column for custom spacing between their children · Issue #16957 · flutter/flutter
Steps to Reproduce I see Row and Column widgets as a UIStackView and would expect spacing parameter so that we can add custom spacing between their children. Something like spacing. I always end up...
New post on /r/flutterdev subreddit:
Does anyone fancy making a Dart/Flutter extension for Nova?
https://nova.app
October 28, 2020 at 12:43PM by blueishninja
https://ift.tt/3kHLaMY
Does anyone fancy making a Dart/Flutter extension for Nova?
https://nova.app
October 28, 2020 at 12:43PM by blueishninja
https://ift.tt/3kHLaMY
nova.app
The beautiful, fast, flexible, native Mac code editor from Panic.
New post on /r/flutterdev subreddit:
Has anybody used GetX package? What is your experience?
No text found
October 28, 2020 at 12:26PM by gaurav_ch
https://ift.tt/2G9mFco
Has anybody used GetX package? What is your experience?
No text found
October 28, 2020 at 12:26PM by gaurav_ch
https://ift.tt/2G9mFco
reddit
Has anybody used GetX package? What is your experience?
Posted in r/FlutterDev by u/gaurav_ch • 1 point and 6 comments
New post on /r/flutterdev subreddit:
Backend pro seeking Flutter pro for symbiotic relationship. Devs helping devs -- *not* a "business opportunity."
Note: I am not looking to start a company or project together.I'm looking for someone for whom Flutter & Dart are second nature, but who would very much like to be able to create their own back-end applications and have already spent enough time & effort learning to start hitting walls.I'm a long-time back-end developer. I've been the tech backbone of a couple of startups, and have created production applications from scratch multiple times.What I've never done well is anything to do with UI. My web pages are ugly but functional. I've never done mobile development.However, I've found Flutter and it's something I can really get into. I'm doing a course and going through books and it's going pretty well. I can see that I'm going to be able to do amazing things.Proposal: When I have a "quick stupid question" that's not submitting to my Google-fu, I can IM or e-mail you (Google Hangouts preferred). When you have a "quick stupid question" about backend/API stuff, you can IM me. That's it. If we became friends along the way, that would be fantastic. But not a requirement.I have over 20 years' experience, mostly back-end and command-line.Things I'm knowledgeable about:GoPythonSQL (PostgreSQL preferred)RedisETLLinuxnginxThings I'm not knowledgeable about or actively avoid:WindowsPHPJavaApacheMySQLI'm also anti-ORM and anti-framework, thanks to having a lot of experience with both.If your interests align with my knowledge, please contact me with your background in Flutter & Dart.Note: If you disagree with my opinions on anything above, awesome. You may even be right. However, I'm not interested in any flame-wars or arguments, so if you want to educate the world please go write a blog post or record a podcast instead of polluting this thread.Thanks!
October 28, 2020 at 01:52PM by ShawnMilo
https://ift.tt/3mn708O
Backend pro seeking Flutter pro for symbiotic relationship. Devs helping devs -- *not* a "business opportunity."
Note: I am not looking to start a company or project together.I'm looking for someone for whom Flutter & Dart are second nature, but who would very much like to be able to create their own back-end applications and have already spent enough time & effort learning to start hitting walls.I'm a long-time back-end developer. I've been the tech backbone of a couple of startups, and have created production applications from scratch multiple times.What I've never done well is anything to do with UI. My web pages are ugly but functional. I've never done mobile development.However, I've found Flutter and it's something I can really get into. I'm doing a course and going through books and it's going pretty well. I can see that I'm going to be able to do amazing things.Proposal: When I have a "quick stupid question" that's not submitting to my Google-fu, I can IM or e-mail you (Google Hangouts preferred). When you have a "quick stupid question" about backend/API stuff, you can IM me. That's it. If we became friends along the way, that would be fantastic. But not a requirement.I have over 20 years' experience, mostly back-end and command-line.Things I'm knowledgeable about:GoPythonSQL (PostgreSQL preferred)RedisETLLinuxnginxThings I'm not knowledgeable about or actively avoid:WindowsPHPJavaApacheMySQLI'm also anti-ORM and anti-framework, thanks to having a lot of experience with both.If your interests align with my knowledge, please contact me with your background in Flutter & Dart.Note: If you disagree with my opinions on anything above, awesome. You may even be right. However, I'm not interested in any flame-wars or arguments, so if you want to educate the world please go write a blog post or record a podcast instead of polluting this thread.Thanks!
October 28, 2020 at 01:52PM by ShawnMilo
https://ift.tt/3mn708O
reddit
Backend pro seeking Flutter pro for symbiotic relationship. Devs...
Note: I am *not* looking to start a company or project together. I'm looking for someone for whom Flutter & Dart are second nature, but who would...
New post on /r/flutterdev subreddit:
Just released a new video about bloc-to-bloc communication, inside my BLoC - From Zero to Hero tutorial series!
Hello everyone!Just managed to post my seventh tutorial of my BLoC - From Zero to Hero series. The main topic is how we can communicate between blocs and/or cubits, so if you're a fan of the bloc library, you may want to take a look over the video.Thank you and have a good day!
October 28, 2020 at 02:56PM by W_C_K_D
https://ift.tt/3kAGwQA
Just released a new video about bloc-to-bloc communication, inside my BLoC - From Zero to Hero tutorial series!
Hello everyone!Just managed to post my seventh tutorial of my BLoC - From Zero to Hero series. The main topic is how we can communicate between blocs and/or cubits, so if you're a fan of the bloc library, you may want to take a look over the video.Thank you and have a good day!
October 28, 2020 at 02:56PM by W_C_K_D
https://ift.tt/3kAGwQA
YouTube
BLoC - from Zero to Hero
Share your videos with friends, family, and the world
New tweet from FlutterDev:
👨‍💻 Tune in for an exciting livecode!
Join @puf and @TK14863 today at 9:30am (PT), as they virtually livecode a cross platform app with Flutter and @Firebase. #FirebaseSummit
RSVP → https://t.co/I9XboYnEJ2 pic.twitter.com/aRITrKSqDU— Flutter (@FlutterDev) October 28, 2020
October 28, 2020 at 05:31PM
http://twitter.com/FlutterDev/status/1321489745550200833
👨‍💻 Tune in for an exciting livecode!
Join @puf and @TK14863 today at 9:30am (PT), as they virtually livecode a cross platform app with Flutter and @Firebase. #FirebaseSummit
RSVP → https://t.co/I9XboYnEJ2 pic.twitter.com/aRITrKSqDU— Flutter (@FlutterDev) October 28, 2020
October 28, 2020 at 05:31PM
http://twitter.com/FlutterDev/status/1321489745550200833
Twitter
Frank van Puffelen (@puf) | Twitter
The latest Tweets from Frank van Puffelen (@puf). Firebaser at Google.
Not a French publishing house (see @editions_PUF), although I like books.
Not a pro-wrestler (see @pufisgod), although I like spandex. San Francisco, CA
Not a French publishing house (see @editions_PUF), although I like books.
Not a pro-wrestler (see @pufisgod), although I like spandex. San Francisco, CA
New post on Flutter Dev Google group:
write a function to determine if the second string is an anagram
main() { var a = anagram("hello", "hello"); print(a); } anagram(String first, String second) { if (first.length != second.length) { return false; } const lookup = {}; for (var i = 0; i < first.length; i++) { var letter = first[i]; lookup[letter] ? lookup[letter] += 1 :
October 28, 2020 at 05:48PM by Droper
https://ift.tt/2TuW7FB
write a function to determine if the second string is an anagram
main() { var a = anagram("hello", "hello"); print(a); } anagram(String first, String second) { if (first.length != second.length) { return false; } const lookup = {}; for (var i = 0; i < first.length; i++) { var letter = first[i]; lookup[letter] ? lookup[letter] += 1 :
October 28, 2020 at 05:48PM by Droper
https://ift.tt/2TuW7FB
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
FlutterUI - Minimal Designs - Movie App - Flutter (Tutorial)
https://www.youtube.com/watch?v=aLwjk-G2Qik
October 28, 2020 at 05:26PM by JohannesMilke
https://ift.tt/3mta6Io
FlutterUI - Minimal Designs - Movie App - Flutter (Tutorial)
https://www.youtube.com/watch?v=aLwjk-G2Qik
October 28, 2020 at 05:26PM by JohannesMilke
https://ift.tt/3mta6Io
YouTube
Flutter Tutorial - FlutterUI - Minimal Designs - Movie App
Create a clean & simple movie app design with great looking transitions in Flutter.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/ui_movies_example
- Buy…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/ui_movies_example
- Buy…
New post on /r/flutterdev subreddit:
Flutter Buddies community update - Groups are ready to join!
Hey Flutter Buddies!I just wanted to say that I was expecting maybe another 20 or 30 people to join our discord server group when I posted this post the other day, but you all surprised me when nearly 300 joined. I was expecting 2X, but you 15X it! It just proved to me that there's a need for a close-nit community for the solo flutter developer.We weren't expecting that... at all. In order to handle that many people we had to set up some serious infrastructure to make sure that everyone gets some benefit. Group size is the concern, too big of a group and some might feel left out, that's the opposite of our goal. We wanted no one to feel lost. Trying to divide 300 people up is a huge task. So we implemented 13 groups and created a tentative weekly recurring schedule for those 13. 10 English speaking channels and 3 alternative languages (French, Spanish, and Hindi) If we need more, we have a template now and can launch quickly. It took u/definitely_robots and I almost a full 24 hours to implement that and recruit some great group leaders that gave some terrific feedback.I am not coming to r/FlutterDev to promote Flutter Buddies, but you're welcome to join if you haven't. http://flutterbuddies.com/ I just wanted to come back here one more time and let anyone know that came and couldn't get into a group yesterday or that couldn't figure out when the meetings are, the groups and schedules are (finally) ready! All day today (Wednesday 10/28) we are letting people choose and fill in their groups and start to get to know each other. The group schedule starts Thursday 10/29 and there's at least one to three virtual meetups every day of the week, all different times, so you should be able to find a slot that works for you.If you are having an issue with the server, this might help:You need to go to the #welcome channel and click the thumbs up on the server bot message to become an official Flutter Buddy Flutterer.This just means you understand that group virtual meetups are our thing and it unlocks the "member's only" section. This isn't meant to keep anyone out, it's just a way to gauge your commitment for everyone in your group. Do this at any time.Once you're a Fluttering Flutter Buddy Flutterer, you can join any group in the #join-group channel. Check the schedule and find a time that works for you (be careful, the times are posted in UTC +0, so there's a conversion chart and link to a converting website)You can join as many groups as you want, but you'll now have messages and meetup times from each group you join.You can change your groups at any point, just go back to #join-group, but if something is bothering you about a group, let me, your group leader, or @robots know.That's it, have a fluttery day!PS, we are discussing a group project, so stay tuned to the server for that when we figure out how to organize it.
October 28, 2020 at 05:16PM by joeyda3rd
https://ift.tt/2HyOR9q
Flutter Buddies community update - Groups are ready to join!
Hey Flutter Buddies!I just wanted to say that I was expecting maybe another 20 or 30 people to join our discord server group when I posted this post the other day, but you all surprised me when nearly 300 joined. I was expecting 2X, but you 15X it! It just proved to me that there's a need for a close-nit community for the solo flutter developer.We weren't expecting that... at all. In order to handle that many people we had to set up some serious infrastructure to make sure that everyone gets some benefit. Group size is the concern, too big of a group and some might feel left out, that's the opposite of our goal. We wanted no one to feel lost. Trying to divide 300 people up is a huge task. So we implemented 13 groups and created a tentative weekly recurring schedule for those 13. 10 English speaking channels and 3 alternative languages (French, Spanish, and Hindi) If we need more, we have a template now and can launch quickly. It took u/definitely_robots and I almost a full 24 hours to implement that and recruit some great group leaders that gave some terrific feedback.I am not coming to r/FlutterDev to promote Flutter Buddies, but you're welcome to join if you haven't. http://flutterbuddies.com/ I just wanted to come back here one more time and let anyone know that came and couldn't get into a group yesterday or that couldn't figure out when the meetings are, the groups and schedules are (finally) ready! All day today (Wednesday 10/28) we are letting people choose and fill in their groups and start to get to know each other. The group schedule starts Thursday 10/29 and there's at least one to three virtual meetups every day of the week, all different times, so you should be able to find a slot that works for you.If you are having an issue with the server, this might help:You need to go to the #welcome channel and click the thumbs up on the server bot message to become an official Flutter Buddy Flutterer.This just means you understand that group virtual meetups are our thing and it unlocks the "member's only" section. This isn't meant to keep anyone out, it's just a way to gauge your commitment for everyone in your group. Do this at any time.Once you're a Fluttering Flutter Buddy Flutterer, you can join any group in the #join-group channel. Check the schedule and find a time that works for you (be careful, the times are posted in UTC +0, so there's a conversion chart and link to a converting website)You can join as many groups as you want, but you'll now have messages and meetup times from each group you join.You can change your groups at any point, just go back to #join-group, but if something is bothering you about a group, let me, your group leader, or @robots know.That's it, have a fluttery day!PS, we are discussing a group project, so stay tuned to the server for that when we figure out how to organize it.
October 28, 2020 at 05:16PM by joeyda3rd
https://ift.tt/2HyOR9q
reddit
We created a small Flutter community for solo developers to help...
Getting back into development as a solo developer myself, and just starting my flutter journey, I did not have someone to bounce ideas off of, to...
New post on /r/flutterdev subreddit:
[Article] Firebase notifications on Mobile and Web
https://rouxguillaume.medium.com/flutter-fcm-notifications-on-mobile-and-web-3a23db50d61dA few days ago I've published an article on Medium on how to implement Firebase Cloud Messaging notifications on Mobile & Web using the same codebase. Here it is for those who might be interested.
October 28, 2020 at 04:55PM by TesteurManiak
https://ift.tt/3oyKVWE
[Article] Firebase notifications on Mobile and Web
https://rouxguillaume.medium.com/flutter-fcm-notifications-on-mobile-and-web-3a23db50d61dA few days ago I've published an article on Medium on how to implement Firebase Cloud Messaging notifications on Mobile & Web using the same codebase. Here it is for those who might be interested.
October 28, 2020 at 04:55PM by TesteurManiak
https://ift.tt/3oyKVWE
Medium
Flutter: FCM notifications on Mobile and Web
Explanations on how to implement Firebase Cloud Messaging notificiations for Flutter mobile & web using the same codebase.
New post on Flutter Dev Google group:
Quiz App--store "mistakes" in a list, pass this list to Results Page, and display it in a listview
Hi Flutter Community, I am working on a quiz app (true/false). I want to store the string of each "Question" into a list ("errors"), pass it to my Results Page, and then display it there using a ListView. However, I haven't had much success--I've tried different things, such as this one, without
October 28, 2020 at 06:10PM by Andrew Villegas
https://ift.tt/3jBHcnI
Quiz App--store "mistakes" in a list, pass this list to Results Page, and display it in a listview
Hi Flutter Community, I am working on a quiz app (true/false). I want to store the string of each "Question" into a list ("errors"), pass it to my Results Page, and then display it there using a ListView. However, I haven't had much success--I've tried different things, such as this one, without
October 28, 2020 at 06:10PM by Andrew Villegas
https://ift.tt/3jBHcnI
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Null Safety and MediaQuery.of
Hi, With null safety enabled, what is the best way of handling if (debugCheckHasMediaQuery(context) == true { if (MediaQuery.of(context).size.width) > 500) { } } Line 2 gives https://ift.tt/34D37X2
October 28, 2020 at 06:44PM by Kevin Chadwick
https://ift.tt/3jGmSBs
Null Safety and MediaQuery.of
Hi, With null safety enabled, what is the best way of handling if (debugCheckHasMediaQuery(context) == true { if (MediaQuery.of(context).size.width) > 500) { } } Line 2 gives https://ift.tt/34D37X2
October 28, 2020 at 06:44PM by Kevin Chadwick
https://ift.tt/3jGmSBs
dart.dev
Diagnostic messages
Details for diagnostics produced by the Dart analyzer.
New post on /r/flutterdev subreddit:
How do you handle the device sleeping on you with flutter?
I have a BLE app and the device will sleep after X seconds of inactivity. If this happens, my app basically crashes when the phone activity is resumed. So I need to detect this change or prevent the app from suspending. It would be great to prevent the app from suspending because then it could still collect data. It would be even better to prevent the screen from shutting off altogether. :)
October 28, 2020 at 06:43PM by 11010001101001
https://ift.tt/3kHlwaY
How do you handle the device sleeping on you with flutter?
I have a BLE app and the device will sleep after X seconds of inactivity. If this happens, my app basically crashes when the phone activity is resumed. So I need to detect this change or prevent the app from suspending. It would be great to prevent the app from suspending because then it could still collect data. It would be even better to prevent the screen from shutting off altogether. :)
October 28, 2020 at 06:43PM by 11010001101001
https://ift.tt/3kHlwaY
reddit
How do you handle the device sleeping on you with flutter?
I have a BLE app and the device will sleep after X seconds of inactivity. If this happens, my app basically crashes when the phone activity is...