Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

BottomNaviagation click conflict
I used the default BottomNavigationBar. Also i used this library "https://pub.dev/packages/flutter_google_ad_manager" to use DFPBanner on my App. on each widget item, i have DFPBanner below the content of the widget. when i tap on any bottomNavigation tap, and the AdBanner partially appear and partially under the bottomNaviagtion, the Ad 's click url opened. this happened on iOS devices only.

September 30, 2019 at 12:01AM by Beshoy102
https://ift.tt/2m7RXX0
New post on /r/flutterdev subreddit:

I've made an open source SFTP client that is now available on the Google PlayStore. Feedback is appreciated.
Google PlayStore: https://play.google.com/store/apps/details?id=com.niklas8.remotefilesGitHub: https://github.com/niklas-8/RemoteFiles

September 30, 2019 at 02:31AM by realni_
https://ift.tt/2oqTxUO
New post on Flutter Dev Google group:

Duplicate Scrollview
Hello all Sir, I'm writing wallpaper app with Flutter. In main page, I used Grid View inside Singlechild scrollview. But, In this case I can scroll 2 views in main page like the following attachment. Please give me any idea to get only one scroll view in main page. Thanks & Regards

September 30, 2019 at 07:04AM by Phyoe Ko Ko Lwin
https://ift.tt/2ovb7Hh
New post on /r/flutterdev subreddit:

Current state of push notifications?
Hi everyone,I’m considering using flutter for the next big one, but the ability to push notifications to users whether or not they have the app running is a must.We are considering Firebase Cloud Messaging.What is the current state of push notifications for iOS and Android?

September 30, 2019 at 09:17AM by arc_phasor
https://ift.tt/2n1FbKb
New post on /r/flutterdev subreddit:

Is it possible to render widgets over the CustomPainter canvas?
I am building a custom ui with very differently shaped objects. I have tried using Transform with Positioned but it does not work well with objects rendering outside the screen. CustomPainter has worked well with rendering the structure but I need different parts of it to respond differently on taps.

September 30, 2019 at 08:50AM by uncoded_decimal
https://ift.tt/2nQRUiF
New post on /r/flutterdev subreddit:

A really easy to use flutter toast library
https://ift.tt/2mOyzyO

September 30, 2019 at 08:41AM by xinmeiwen
https://ift.tt/2oqcSVX
New post on /r/flutterdev subreddit:

Flutter UIKitView and FlutterPlatformView - Is it Restricted to UIView only?
I came across UIKitView and FlutterPlatformView, and have been working on such implementation. Are the following points limitations?Why can’t i use UIViewControllers? I’m building an app that has one screen built with IOS and Swift, this accesses camera and speech recognition. Is FlutterPlatformView restricted to only UIView? Can i use StoryBoard, UIViewControllers, UICollectionViewController etc., if so can you redirect me to some resources.

September 30, 2019 at 12:33PM by iamkishanme
https://ift.tt/2ouPsyM
New post on /r/flutterdev subreddit:

Navigation using Provider package issue ( overall widget <- provider communication flow )
Hey FlutterDev. I don't quite understand the proper place of calling Navigator.pushNamed(context, SomeScreen.tag) using the provider package as state management tool. I have a feeling that there is something quite important that i'm missing here.Since there is no context in provider, the only thing that i found i can do is using a GlobalKey for navigation.I don't like this one though, because i have no knowledge about how bad that GlobalKey can hit performance.Objectivespress button, show loading, upon api on success response navigate to different screen. What seems off here is that i currently to do all of that in child: ... of + It doesn't work this waysame flow, but on failure a snackbar or some kind of a toast message has to be shownThese are simplified code snippets to understand what is going on.
Any help would be appreciated. + Does anyone know a full scale project on github that uses provider AND handles complex scenarios effectively?SignInProvider with ChangeNotifier
 Future signIn() async { signInState = SignInState.loading; notifyListeners(); try { fetching data.... signInState = SignInState.success(data); } catch (error) { signInState = SignInState.noNetwork; } notifyListeners(); } } 
The SignIn stateless widget
body: Stack( someWidget(), Consumer<SignInProvider>( builder: (context, provider, child) => MaterialButton( onPressed: provider.signIn, child: (() { if (provider.signInState == null) { return LoginButton(); } else if (provider.signInState is SignInSuccess) { ----------------------> goMainScreen(context); ----------------------> return LoginButton(); // not needed really } else if (provider.signInState is SignInLoading) { return ProgressBar(); } else if (provider.signInState is SignInNetworkError) { ----------------------> return LoginButton() + showErrorMessage(); } return null; }()))) ) 


September 30, 2019 at 03:14PM by skyyoo_
https://ift.tt/2mVEbr6
New post on /r/flutterdev subreddit:

Flutter Tap Newsletter - Week 6
https://ift.tt/2n77mqY

September 30, 2019 at 05:29PM by vensign
https://ift.tt/2naBaD4
New post on /r/flutterdev subreddit:

A clean straightforward flutter form field validator that provides common validation options.
https://ift.tt/2n9WZ5S

September 30, 2019 at 08:16PM by Milad_Alakarie
https://ift.tt/2oHFla3
New post on /r/flutterdev subreddit:

r_flutter - code generator for assets and localization strings
I would like to let everyone know about a very useful package called r_flutter, which for some reason is not very popular: https://pub.dev/packages/r_flutterIt automatically generates asset names for assets added into the project, font names and localization keys.Latest version added picture documentation to generated entries so it's easy to browse them while writting widgets:https://imgur.com/a/sjPyy80For more advanced usage, there is also option to integrate with other libraries like flutter_svg.

September 30, 2019 at 08:02PM by chrabeusz
https://ift.tt/2oDgCU9
New post on /r/flutterdev subreddit:

How To Create a Dynamic Theme in Flutter Using Provider
https://ift.tt/2o0Vy9K

September 30, 2019 at 08:29PM by divyanshub024
https://ift.tt/2oD6YAV
New post on /r/flutterdev subreddit:

60 Days of Flutter :Building a Messenger from Scratch : Day 42–45 : Creating the Home Page & Quick Peek BottomSheet for Messages
https://ift.tt/2nVNnvG

September 30, 2019 at 09:42PM by aditya_gurjar
https://ift.tt/2oGYs3X