New post on /r/flutterdev subreddit:
Resolve local hostname
Hello all, I've been making a simple mqtt application for my raspberry pi running node-red and it's going pretty well.I have two mqtt brokers running locally and a remote broker. I can access the remote broker just fine but when I try to connect to the local mosquito broker running on pi through its hostname (raspberrypi.local) I'm getting error
December 25, 2019 at 05:39PM by Deepu_
https://ift.tt/379o22G
Resolve local hostname
Hello all, I've been making a simple mqtt application for my raspberry pi running node-red and it's going pretty well.I have two mqtt brokers running locally and a remote broker. I can access the remote broker just fine but when I try to connect to the local mosquito broker running on pi through its hostname (raspberrypi.local) I'm getting error
flutter os error: no address associated with
hostname, errno = 7I've looked into this error and found out I may have to use something like mDns package. I'm not sure where to head next.The raspberry pi will be connected to existing WiFi and it may have different IPs every time it reconnects.December 25, 2019 at 05:39PM by Deepu_
https://ift.tt/379o22G
reddit
Resolve local hostname
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
Flutter ile telefon rehberi uygulaması yapıyoruz.
https://www.youtube.com/watch?v=mz5aoKvc-4c&feature=share
December 25, 2019 at 05:03PM by kesalitech
https://ift.tt/2MvOoEa
Flutter ile telefon rehberi uygulaması yapıyoruz.
https://www.youtube.com/watch?v=mz5aoKvc-4c&feature=share
December 25, 2019 at 05:03PM by kesalitech
https://ift.tt/2MvOoEa
YouTube
Flutter ile telefon rehberi uygulaması yapıyoruz.
Flutter eğitim serisi 3. videomuzda ilk mini uygulamamız olan telefon rehberi uygulamasını yapıyoruz. Proje dosyalarına https://github.com/kesali/flutter-egi...
New post on /r/flutterdev subreddit:
Getting input without textbox
Is there a way to get text input without actually having a text input with a listener?Basically I am using some android devices with barcode scanners. When you scan a barcode the numbers are sent through the device as typing. I need to grab that text and deal with it.My current hack:1) have text input on the page2) autofocus the text input so typing goes to it3) hide the keyboard4) capturing typing to the text input5) do a big song and dance to let the user type in the text input if they really want toI would rather skip steps 2 and 3 and 5... but to do it, I need to capture typing without an input selected
December 25, 2019 at 07:53PM by TunaBoo
https://ift.tt/2sjQ7FB
Getting input without textbox
Is there a way to get text input without actually having a text input with a listener?Basically I am using some android devices with barcode scanners. When you scan a barcode the numbers are sent through the device as typing. I need to grab that text and deal with it.My current hack:1) have text input on the page2) autofocus the text input so typing goes to it3) hide the keyboard4) capturing typing to the text input5) do a big song and dance to let the user type in the text input if they really want toI would rather skip steps 2 and 3 and 5... but to do it, I need to capture typing without an input selected
December 25, 2019 at 07:53PM by TunaBoo
https://ift.tt/2sjQ7FB
reddit
Getting input without textbox
Is there a way to get text input without actually having a text input with a listener? Basically I am using some android devices with barcode...
New post on /r/flutterdev subreddit:
ancestorInheritedElementForWidgetOfExactType is deprecated
After v1.12.1 ancestorInheritedElementForWidgetOfExactType is deprecated. We should use getElementForInheritedWidgetOfExactType now. How do I edit this BlocProvider?
December 26, 2019 at 12:00AM by poq106
https://ift.tt/3635i4Q
ancestorInheritedElementForWidgetOfExactType is deprecated
After v1.12.1 ancestorInheritedElementForWidgetOfExactType is deprecated. We should use getElementForInheritedWidgetOfExactType now. How do I edit this BlocProvider?
import 'package:flutter/material.dart'; Type _typeOf<T>() => T; abstract class BlocBase { void dispose(); } class BlocProvider<T extends BlocBase> extends StatefulWidget { BlocProvider({ Key key, @required this.child, @required this.bloc, }) : super(key: key); final Widget child; final T bloc; @override _BlocProviderState<T> createState() => _BlocProviderState<T>(); static T of<T extends BlocBase>(BuildContext context) { final type = _typeOf<_BlocProviderInherited<T>>(); _BlocProviderInherited<T> provider = context.ancestorInheritedElementForWidgetOfExactType(type)?.widget; return provider?.bloc; } } class _BlocProviderState<T extends BlocBase> extends State<BlocProvider<T>> { @override void dispose() { widget.bloc?.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return new _BlocProviderInherited<T>( bloc: widget.bloc, child: widget.child, ); } } class _BlocProviderInherited<T> extends InheritedWidget { _BlocProviderInherited({ Key key, @required Widget child, @required this.bloc, }) : super(key: key, child: child); final T bloc; @override bool updateShouldNotify(_BlocProviderInherited oldWidget) => false; }
December 26, 2019 at 12:00AM by poq106
https://ift.tt/3635i4Q
reddit
ancestorInheritedElementForWidgetOfExactType is deprecated
After v1.12.1 *ancestorInheritedElementForWidgetOfExactType* is deprecated. We should use *getElementForInheritedWidgetOfExactType* now. How do I...
New post on /r/flutterdev subreddit:
ZoomableTiltView is simple widget to add some juiciness to your app.
https://ift.tt/2SlMqtI
December 25, 2019 at 11:17PM by Elixane
https://ift.tt/2PUsDzO
ZoomableTiltView is simple widget to add some juiciness to your app.
https://ift.tt/2SlMqtI
December 25, 2019 at 11:17PM by Elixane
https://ift.tt/2PUsDzO
Dart packages
zoomable_tilt_view | Flutter Package
Tilt-view widget to add some juiciness to your app.
New post on /r/flutterdev subreddit:
Are there an alternative to DynamicData in Flutter?
DynamicData
December 26, 2019 at 04:15AM by 5yunus2efendi
https://ift.tt/2PX1Y5u
Are there an alternative to DynamicData in Flutter?
DynamicData
is a Reactive collections based on Rx.Net
DynamicData is really helpful when you need list filtering, grouping, etc without changing the source list. The closest I found in Flutter is MobX ObservableList.If you guys know the alternatives in Flutter (or on the other frontend framework for that matter) that would really much appreciatedThank youDecember 26, 2019 at 04:15AM by 5yunus2efendi
https://ift.tt/2PX1Y5u
GitHub
GitHub - reactivemarbles/DynamicData: Reactive collections based on Rx.Net
Reactive collections based on Rx.Net. Contribute to reactivemarbles/DynamicData development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
How to Create Splash Screen in a Flutter App | Splash Screen Tutorial
https://youtu.be/QnglGHffUIo
December 26, 2019 at 06:45AM by sagarshende
https://ift.tt/35XmM2n
How to Create Splash Screen in a Flutter App | Splash Screen Tutorial
https://youtu.be/QnglGHffUIo
December 26, 2019 at 06:45AM by sagarshende
https://ift.tt/35XmM2n
YouTube
How to Create Splash Screen in a Flutter App | Splash Screen Tutorial
Splash Screen help Brand to get Noticed Or Brand Awareness so Today I am going to show how to create a Splash screen in a flutter
Splash Screen Animation can be a Simple Logo Animation of your Brand. this Splashscreen animation can be done with the help…
Splash Screen Animation can be a Simple Logo Animation of your Brand. this Splashscreen animation can be done with the help…
New post on Flutter Dev Google group:
Please help me with question posted on stackoverflow
Below is the link where I have posted my question https://ift.tt/2tU6lG5
December 26, 2019 at 07:34AM by mahantappa b k
https://ift.tt/39c57WL
Please help me with question posted on stackoverflow
Below is the link where I have posted my question https://ift.tt/2tU6lG5
December 26, 2019 at 07:34AM by mahantappa b k
https://ift.tt/39c57WL
New post on /r/flutterdev subreddit:
Android X incompatibility
Android X incompatibility error. I get this error quite often nowadays whenever i compile. I have set the android x variables specified in the gradle.properties file to true , no issue there. Any tips as to how to avoid it? I simply have to migrate my project to a new file in order to remove it rn and would like an alternative as this is tiresome
December 26, 2019 at 08:09AM by Grey-Winds
https://ift.tt/2ZuJc8H
Android X incompatibility
Android X incompatibility error. I get this error quite often nowadays whenever i compile. I have set the android x variables specified in the gradle.properties file to true , no issue there. Any tips as to how to avoid it? I simply have to migrate my project to a new file in order to remove it rn and would like an alternative as this is tiresome
December 26, 2019 at 08:09AM by Grey-Winds
https://ift.tt/2ZuJc8H
reddit
Android X incompatibility
Android X incompatibility error. I get this error quite often nowadays whenever i compile. I have set the android x variables specified in the...
New post on /r/flutterdev subreddit:
I wonder why Flutter team not starting a backend framework?
I know there is a lot of dart framework but none of them is supported by Google so they are not popular in the communityI wonder if we collect enough signatures and send it to Flutter team maybe they could consider making a backend framework for Flutter developersYou can sign here
https://www.ipetitions.com/petition/google-dart-backend-framework
December 26, 2019 at 08:05AM by amrenew
https://ift.tt/37agcFM
I wonder why Flutter team not starting a backend framework?
I know there is a lot of dart framework but none of them is supported by Google so they are not popular in the communityI wonder if we collect enough signatures and send it to Flutter team maybe they could consider making a backend framework for Flutter developersYou can sign here
https://www.ipetitions.com/petition/google-dart-backend-framework
December 26, 2019 at 08:05AM by amrenew
https://ift.tt/37agcFM
Ipetitions
Petition Google Dart Backend Framework
New post on /r/flutterdev subreddit:
Flutter cube - a widget for render the 3d obj files
https://ift.tt/2t4FxSM
December 26, 2019 at 07:45AM by ZebiaoHu
https://ift.tt/2QoN9Yi
Flutter cube - a widget for render the 3d obj files
https://ift.tt/2t4FxSM
December 26, 2019 at 07:45AM by ZebiaoHu
https://ift.tt/2QoN9Yi
Dart packages
flutter_cube | Flutter Package
A Flutter 3D widget that renders Wavefront's object files.
New post on Flutter Dev Google group:
On the related problems of multidexenabled
12-26 15:53:48.297 1673-1736/? E/InputLog: WindowManager : startDockOrHome ok 12-26 15:53:49.987 16798-16798/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.jokui.dali, PID: 16798 java.lang.RuntimeException: Unable to get provider io.flutter.plugins.imagepicker.ImagePickerFileProvi
December 26, 2019 at 08:55AM by 饶鸿
https://ift.tt/2EUnOAc
On the related problems of multidexenabled
12-26 15:53:48.297 1673-1736/? E/InputLog: WindowManager : startDockOrHome ok 12-26 15:53:49.987 16798-16798/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.jokui.dali, PID: 16798 java.lang.RuntimeException: Unable to get provider io.flutter.plugins.imagepicker.ImagePickerFileProvi
December 26, 2019 at 08:55AM by 饶鸿
https://ift.tt/2EUnOAc
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:
Ending 2019 by celebrating 10k downloads of my app "Flutter Widget Guide" on the Play Store. 🎉
I was never going to start this project thinking, who would ever download it! But the response has been overwhelming. If you're deliberating about a side hustle, then just go for it. You never know what you will learn and gain in the process. I am glad to have created a community of flutter developers via this app on my Slack Channel.Happy to be giving back to the community via this app and can't wait to start brainstorming my next project. 💭Link to the app - https://play.google.com/store/apps/details?id=com.annsh.flutterwidgetguide&hl=enDo share your side projects below in the comments section. Would love to try them out :)Cheers everyone and happy holidays :)
December 26, 2019 at 09:06AM by annshsingh
https://ift.tt/2QjBPwz
Ending 2019 by celebrating 10k downloads of my app "Flutter Widget Guide" on the Play Store. 🎉
I was never going to start this project thinking, who would ever download it! But the response has been overwhelming. If you're deliberating about a side hustle, then just go for it. You never know what you will learn and gain in the process. I am glad to have created a community of flutter developers via this app on my Slack Channel.Happy to be giving back to the community via this app and can't wait to start brainstorming my next project. 💭Link to the app - https://play.google.com/store/apps/details?id=com.annsh.flutterwidgetguide&hl=enDo share your side projects below in the comments section. Would love to try them out :)Cheers everyone and happy holidays :)
December 26, 2019 at 09:06AM by annshsingh
https://ift.tt/2QjBPwz
Google Play
Flutter Widget Guide - Apps on Google Play
This app is a one-stop guide for a beginner in the Flutterverse.
New post on /r/flutterdev subreddit:
I just made a Flappy Bird clone with Flutter and Flame, here are my thoughts
Check it out: https://youtu.be/DeoUhI-Waa0I always wanted to build games. So I thought I would give Flame a try. Here are my thoughts if anyone wants to get started with Flame as well:It was fun! After writing a few Flutter apps, I really love the language Dart. There were very little Flutter-ish codes when I wrote the game, but still it was very enjoyable with Hot Reload and other cool Dart stuff.It was quick. I had VERY LITTLE knowledge of other game engines and libraries. I always wanted to learn Godot/Unity, but never really started to. Even so, I made the clone only in a few hours. It would have taken quicker, but it was my first time and I had to figure some stuff out from the source codes, find assets etc.Flame was very easy to understand. I had only read a five part LANGAW game tutorial, and I felt like I was ready to write my own games 😝It was very performant, and the APK size wasn't big at all(5.9 MB with all the assets and audios). I know that some of the Game Engines and libraries generate big APKs.What do you think about Flame? I really enjoyed it. If anyone's interested, I'll polish the code and put it up on my GitHub.
December 26, 2019 at 10:38AM by _nightwielder_
https://ift.tt/37aDP13
I just made a Flappy Bird clone with Flutter and Flame, here are my thoughts
Check it out: https://youtu.be/DeoUhI-Waa0I always wanted to build games. So I thought I would give Flame a try. Here are my thoughts if anyone wants to get started with Flame as well:It was fun! After writing a few Flutter apps, I really love the language Dart. There were very little Flutter-ish codes when I wrote the game, but still it was very enjoyable with Hot Reload and other cool Dart stuff.It was quick. I had VERY LITTLE knowledge of other game engines and libraries. I always wanted to learn Godot/Unity, but never really started to. Even so, I made the clone only in a few hours. It would have taken quicker, but it was my first time and I had to figure some stuff out from the source codes, find assets etc.Flame was very easy to understand. I had only read a five part LANGAW game tutorial, and I felt like I was ready to write my own games 😝It was very performant, and the APK size wasn't big at all(5.9 MB with all the assets and audios). I know that some of the Game Engines and libraries generate big APKs.What do you think about Flame? I really enjoyed it. If anyone's interested, I'll polish the code and put it up on my GitHub.
December 26, 2019 at 10:38AM by _nightwielder_
https://ift.tt/37aDP13
YouTube
Fluttering Bird - Flappy Bird clone with Flame and Flutter
Cloned the Flappy Bird game with Flutter's minimalist game engine called Flame. I had absolutely no knowledge of Flame or other game engines, but it took me only a few hours to make this.
New post on /r/flutterdev subreddit:
Which state solution bigger companies are using?
Hello, I have spent about 2 months learning/coding in flutter. Coming from native IOS and Android development it was a pleasant experience. The one thing I love the most about flutter is building UI. Compared with Android or IOS it is much easier/faster (2-4 times) to build UI in Flutter.However, I feel that state management is still an issue for me. Right now I am using flutter_bloc with Provider but not sure about my choice.In native android I saw exactly the same issue regarding architecture. Google did not recommend any architecture and it became a mess in the Android world. Only 3 years ago MVVM became the suggested solution and there is still debate today.This is why I want to ask about big companies and their state management choice. Do they use redux or provider, or perhaps mobx, flutter_bloc? Can someone suggest some references for their choices? I am referring companies like Alibaba, Google (Stadia app), Tencent, reflectly app. Also if you are working in the company and use Flutter, can you share your choice? :)
December 26, 2019 at 11:57AM by wellbranding
https://ift.tt/2SqXyWb
Which state solution bigger companies are using?
Hello, I have spent about 2 months learning/coding in flutter. Coming from native IOS and Android development it was a pleasant experience. The one thing I love the most about flutter is building UI. Compared with Android or IOS it is much easier/faster (2-4 times) to build UI in Flutter.However, I feel that state management is still an issue for me. Right now I am using flutter_bloc with Provider but not sure about my choice.In native android I saw exactly the same issue regarding architecture. Google did not recommend any architecture and it became a mess in the Android world. Only 3 years ago MVVM became the suggested solution and there is still debate today.This is why I want to ask about big companies and their state management choice. Do they use redux or provider, or perhaps mobx, flutter_bloc? Can someone suggest some references for their choices? I am referring companies like Alibaba, Google (Stadia app), Tencent, reflectly app. Also if you are working in the company and use Flutter, can you share your choice? :)
December 26, 2019 at 11:57AM by wellbranding
https://ift.tt/2SqXyWb
reddit
Which state solution bigger companies are using?
Hello, I have spent about 2 months learning/coding in flutter. Coming from native IOS and Android development it was a pleasant experience. The...
New post on /r/flutterdev subreddit:
Bottom navigation bar and routing
Hi there,I am developing an application where I've created bottom navigation bar with PageStorage in order to persist states between pages. But what bothers me is that I am instantiating these screens directly and I do not have routs in main.dart file.So my question is: Is it possible and good practice to add navigation to these screens since these are used only for bottom nav.bar?
December 26, 2019 at 11:46AM by lazarvgd
https://ift.tt/2Qk3u0n
Bottom navigation bar and routing
Hi there,I am developing an application where I've created bottom navigation bar with PageStorage in order to persist states between pages. But what bothers me is that I am instantiating these screens directly and I do not have routs in main.dart file.So my question is: Is it possible and good practice to add navigation to these screens since these are used only for bottom nav.bar?
December 26, 2019 at 11:46AM by lazarvgd
https://ift.tt/2Qk3u0n
New post on /r/flutterdev subreddit:
reWalls : Wallpapers From reddit
This is something I've been working on for quite a while. It's a wallpaper app that lets you browse your favorite subreddits and allows you to set the image as wallpaper or download the image. It's still in it's early stage, so your feedback is highly appreciated.
You can try out the app here: https://play.google.com/store/apps/details?id=com.bimsina.re_walls
Also the project is open source so you can contribute to the project here: https://github.com/bimsina/reWalls
December 25, 2019 at 02:48AM by bimsina
https://ift.tt/2EV6dbm
reWalls : Wallpapers From reddit
This is something I've been working on for quite a while. It's a wallpaper app that lets you browse your favorite subreddits and allows you to set the image as wallpaper or download the image. It's still in it's early stage, so your feedback is highly appreciated.
You can try out the app here: https://play.google.com/store/apps/details?id=com.bimsina.re_walls
Also the project is open source so you can contribute to the project here: https://github.com/bimsina/reWalls
December 25, 2019 at 02:48AM by bimsina
https://ift.tt/2EV6dbm
Google Play
reWalls : Wallpapers from Reddit - Apps on Google Play
Browse the best wallpapers from reddit.
Choose you favorite categories from your favorite subreddit to customize your home screen to your liking.
Choose you favorite categories from your favorite subreddit to customize your home screen to your liking.
New post on /r/flutterdev subreddit:
A few questions about best practices for building an app's authentication
I want to build an app using flutter and was wondering if there was a better way to build an authentication system. I wanted to get things down and planned before I start working on it.Authentication can done using google_sign_in, flutter_facebook_login, and firebase_auth.When the user is signed in or signed up, his data is stored locally using sqlite (as described here: https://pusher.com/tutorials/local-data-flutter). User data is retrieved later whenever required.When an app is opened (after the first sign in/up), while the splash screen displays, we check whether there saved user data. If no, we redirect to the authentication page, else we verify if the data matches what's on the server. If it matches, we display the home page, else, we redirect towards authentication.Does this sound alright?
December 26, 2019 at 03:06PM by Cracin
https://ift.tt/2MuxQfH
A few questions about best practices for building an app's authentication
I want to build an app using flutter and was wondering if there was a better way to build an authentication system. I wanted to get things down and planned before I start working on it.Authentication can done using google_sign_in, flutter_facebook_login, and firebase_auth.When the user is signed in or signed up, his data is stored locally using sqlite (as described here: https://pusher.com/tutorials/local-data-flutter). User data is retrieved later whenever required.When an app is opened (after the first sign in/up), while the splash screen displays, we check whether there saved user data. If no, we redirect to the authentication page, else we verify if the data matches what's on the server. If it matches, we display the home page, else, we redirect towards authentication.Does this sound alright?
December 26, 2019 at 03:06PM by Cracin
https://ift.tt/2MuxQfH
Pusher
How to save data locally in Flutter | Pusher tutorials
This tutorial looks at saving data locally with Flutter. It provides code samples for three methods: saving to shared preferences, to a database, and to a file. You will learn when to use each method, as well as the basic Flutter code and dependencies needed.
New post on /r/flutterdev subreddit:
Flutter UI - How do I scale it?
I can create UI for my phone, but when I try to run it on a tablet or other phone, the widgets sometimes exceed bounds and I get a cautionary bar.Is there a widget that I can use to scale this?
December 26, 2019 at 03:12PM by Ultra1101
https://ift.tt/2PXQ4Z5
Flutter UI - How do I scale it?
I can create UI for my phone, but when I try to run it on a tablet or other phone, the widgets sometimes exceed bounds and I get a cautionary bar.Is there a widget that I can use to scale this?
December 26, 2019 at 03:12PM by Ultra1101
https://ift.tt/2PXQ4Z5
reddit
Flutter UI - How do I scale it?
I can create UI for my phone, but when I try to run it on a tablet or other phone, the widgets sometimes exceed bounds and I get a cautionary bar....
New post on /r/flutterdev subreddit:
Flutter Scale Aware
Hey Community!Here we go again. This one is still without a fancy README but maybe looks appealing enough to continue at a second stab? It introduces extensions to aide scale-based layouts.
December 26, 2019 at 03:51PM by jogboms
https://ift.tt/35YQqEt
Flutter Scale Aware
Hey Community!Here we go again. This one is still without a fancy README but maybe looks appealing enough to continue at a second stab? It introduces extensions to aide scale-based layouts.
Container( height: context.scale(2), width: context.scale(14.5), color: Color.red, child: Text("Hello World", style: TextStyle(fontSize: context.fontScale(16))), )PS: It has a huge set of test cases and good coverage.
December 26, 2019 at 03:51PM by jogboms
https://ift.tt/35YQqEt
reddit
Flutter Scale Aware
Hey Community! Here we go again. This one is still without a fancy README but maybe looks appealing enough to continue at a second stab? It...
New post on Flutter Dev Google group:
unable to build a dashboard menu
dear all iam very new to flutter iam trying to build a dashboard menu (consist of all buttons for the command) is there any git repo regarding this topic if yes kindly share best regards
December 26, 2019 at 04:11PM by Mohd Faiz
https://ift.tt/369o8Y5
unable to build a dashboard menu
dear all iam very new to flutter iam trying to build a dashboard menu (consist of all buttons for the command) is there any git repo regarding this topic if yes kindly share best regards
December 26, 2019 at 04:11PM by Mohd Faiz
https://ift.tt/369o8Y5
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.