Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: Newbie question about flutter install
Hi Is it possibel to use Flutter without Android Studio ? I have tried to run flutter doctor and i get "missing android SDK command line tools ... download from..." command lin tools are installed properly : path and android_sdk_root and android_home are set. Does everybody have any idea ?

Submitted October 24, 2018 at 05:47PM by Kovács Attila
via Flutter Dev https://ift.tt/2R9LZic
Reddit: A few questions about adopting Flutter.
I have an iOS and Android app that use bluetooth and save a lot of data points on a Realm database locally. How does Flutter do running in the background with both platforms? I know Realm is not available for Flutter but could I build an extension on Android and iOS to read and write to it? Would that be too slow? What types of functions should or should not be handled by the native framework instead of Flutter? Thanks guys!

Submitted October 24, 2018 at 05:41PM by phriend2spin
via reddit https://ift.tt/2qaEfBe
GGroup: Flutter Gradle Issue on Brand New Install
I am receiving the following error when I try to run the default app on brand new install. Any thoughts on resolving this issue is much appreciated. Launching lib/main.dart on Android SDK built for x86 in debug mode... Initializing gradle... Resolving dependencies... * Error running Gradle:

Submitted October 24, 2018 at 06:54PM by Claude Grecea
via Flutter Dev https://ift.tt/2ReMurr
GGroup: Building a cross-platform to-do mobile app using Flutter
This is going to be a series of tutorials on how to build a to-do mobile platform. I hope it helps anyone (now or in the future) https://ift.tt/2O2dt7q And for any feedback, kindly let the author know through medium

Submitted October 24, 2018 at 08:12PM by alexandrai...@gmail.com
via Flutter Dev https://ift.tt/2OJaIND
Reddit: Can't get first Flutter app running
I've followed along the instructions on Get Started: Install on Linux but once I'm at the point of trying to run the initial app, it fails with a gradle error regarding a file called 'intellij-core.jar'.There's a Stack Overflow question similar to mine here but none of the answers work for me.I've tried on both Linux and Windows but it seems to be a showstopper. Not sure how to proceed.Flutter doctor says I have everything set up correctly, and I'm using the latest version of Android Studio.

Submitted October 24, 2018 at 09:07PM by tzipp
via reddit https://ift.tt/2ArFBgP
Reddit: Flutter error: Attempt to invoke virtual method 'void com.google.firebase.auth.internal.zzab.zzf(int)' on a null object reference, null
When ever I'm building my app, my app successfully getting build but at the time of installing that to device I'm getting following error & app get crash on device with a white screen.​
Launching lib/main.dart on Pixel 2 XL in debug mode... Initializing gradle... Resolving dependencies... Running 'gradlew assembleDebug'... Configuration 'compile' in project ':app' is deprecated. Use 'implementation' instead. registerResGeneratingTask is deprecated, use registerGeneratedFolders(FileCollection) registerResGeneratingTask is deprecated, use registerGeneratedFolders(FileCollection) registerResGeneratingTask is deprecated, use registerGeneratedFolders(FileCollection) registerResGeneratingTask is deprecated, use registerGeneratedFolders(FileCollection) registerResGeneratingTask is deprecated, use registerGeneratedFolders(FileCollection) Built build/app/outputs/apk/debug/app-debug.apk. Installing build/app/outputs/apk/app.apk... E/flutter (26133): \[ERROR:flutter/shell/common/shell.cc(181)\] Dart Error: Unhandled exception: E/flutter (26133): PlatformException(error, Attempt to invoke virtual method 'void com.google.firebase.auth.internal.zzab.zzf(int)' on a null object reference, null) E/flutter (26133): #0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message\_codecs.dart:551:7) E/flutter (26133): #1 MethodChannel.invokeMethod (package:flutter/src/services/platform\_channel.dart:279:18) E/flutter (26133): <asynchronous suspension> E/flutter (26133): #2 Firestore.settings (file:///Users/sureshkumarmajhi/.pub-cache/hosted/pub.dartlang.org/cloud\_firestore-0.8.2+1/lib/src/firestore.dart:136:19) E/flutter (26133): <asynchronous suspension> E/flutter (26133): #3 main (file:///Users/sureshkumarmajhi/AndroidStudioProjects/bhramaan/lib/main.dart:62:19) E/flutter (26133): <asynchronous suspension> E/flutter (26133): #4 \_startIsolate.<anonymous closure> (dart:isolate/runtime/libisolate\_patch.dart:289:19) E/flutter (26133): #5 \_RawReceivePortImpl.\_handleMessage (dart:isolate/runtime/libisolate\_patch.dart:171:12) E/EnhancedIntentService(26133): binding to the service failed Syncing files to device Pixel 2 XL... 
​I'm getting this error after upgrading to latest ```cloud_firestore: ^0.8.2+1```. Can't able to understand what is happening. :(

Submitted October 24, 2018 at 08:54PM by mi6crazyheart
via reddit https://ift.tt/2PTEueY
GGroup: Dart 2.1 Breaking Bug Fixes
*TL;DR: Dart 2.1 will include a number of small bug fixes to places where the tools accepted non spec-compliant code. These fixes have landed in development versions of Dart and in the Flutter master branch, and we have fixed any breakage that we have seen, but it is possible that apps or

Submitted October 24, 2018 at 11:16PM by Leaf Petersen
via Flutter Dev https://ift.tt/2yzyOQI
GGroup: Breaking change: NavigatorObserver.didStartUserGesture signature adds 2 more parameters
With https://ift.tt/2OPc21y void didStartUserGesture() will become void didStartUserGesture(Route route, Route previousRoute) on the NavigatorObserver. The previous signature informed the listener of the timing of gesture triggered navigations but

Submitted October 24, 2018 at 11:33PM by Xiao Yu
via Flutter Dev https://ift.tt/2O4P40W
GGroup: how to focus one text field to another text field automatically
how to focus one text field to another text field automatically please help me

Submitted October 25, 2018 at 01:09PM by krgau...@gmail.com
via Flutter Dev https://ift.tt/2ytVFgH
GGroup: Secure app using PIN code
How to write Flutter app that would require user to enter PIN code each time app is resumed and then returned to previous active state? Currently I'm using didChangeAppLifecycleState event, that changes body of RootPage (StatefulWidget) on each AppLifecycleState.paused to PinWidget. This actually

Submitted October 25, 2018 at 03:11PM by Matej Krhin
via Flutter Dev https://ift.tt/2JfiuJb
Reddit: Flutter iOS OAuth Implementation
I've been struggling with implementing the OAuth flow inside my Flutter app. At a low level, I'm trying to use the Quickbooks API to push some customer data to. Right now the app is hosted on Firebase.It's my understanding that the Redirect URI in the OAuth Flow for a mobile application needs to be some kind of deep link inside the application, which leaves iOS's Universal Links, and Firebase Dynamic Links (just another implementation of Universal Links for a Firebase app).I've been able to use both of these methods to successfully link back to my app using Safari within the iOS emulator. However, when I use that app link as a Redirect URI in the OAuth Flow, the redirection never happens. I get to the point of allowing Quickbooks access to my app in the Safari Webview, and I can see the browser "make an effort" to redirect (app redirect URL flashes quickly), but it never actually makes that hand off, leaving me unable to parse the returned URI.Does anybody have any guidance on what could possibly be happening here?

Submitted October 25, 2018 at 02:56PM by cmcmanus96
via reddit https://ift.tt/2ArhEWK
GGroup: Valid RegExp Expressions
Flutter is saying this is not a valid RegExp Expression, but same code in DartPad works. Why does Flutter not think this is valid. RegExp('(?<=breeds\/).*?(?=\/)') All I want to do is extract "houd-afghan" from the URL below. var str = "https://images.dog.ceo/breeds/hound-afghan/n02088094_5150.j

Submitted October 25, 2018 at 05:04PM by Claude Grecea
via Flutter Dev https://ift.tt/2PUnDcd
Reddit: Flutter app error - type 'Timestamp' is not a subtype of type 'DateTime'
I'm fetching data cloud firestore & trying to show in my app by using the following piece of code.​new Text(timeago.format(document.data['tripDoc']['docCreatedOn'])),​I'm using ```timeago``` dart package to format that. But, after making updating to latest cloud firestore plugin I'm getting this error -​Another exception was thrown: type 'Timestamp' is not a subtype of type 'DateTime'​Can't able to understand how to parse this 'TimeStamp' object to 'DateTime'. Because ```timeago``` plugin need data in DateTime object format.

Submitted October 25, 2018 at 09:27PM by mi6crazyheart
via reddit https://ift.tt/2yy24Ya
Reddit: Protocols and Enums in Dart
I come from an iOS background and recently decided to learn about Flutter. I am curios to know if things like Protocols and Enums exist in the Dart Programming Language. Can you do Protocol Oriented Programming in Dart?

Submitted October 26, 2018 at 12:02AM by zapoJMR
via reddit https://ift.tt/2yySh3U
Reddit: Is flutter/dart worth learning as a freelancer?
Im looking to transition into mobile dev. Is flutter worthwhile to learn for contract work? I dont see any job listings for it. Or should i look into react-native?

Submitted October 26, 2018 at 12:52AM by yabadababoo
via reddit https://ift.tt/2qcVnWO
Reddit: Basic design of a flutter app
Hi,I am new to flutter and have been following the flutter tutorial for the past few days and it seems to me that all the codes are written inside of main.dart. Are the designs usually like that? Does flutter support reusable components like having each class in different files ?Thanks!

Submitted October 26, 2018 at 10:12AM by recodexxx28
via reddit https://ift.tt/2z3uetv
Reddit: A new library for lists that should snip to a specific position.
Hello, Flutter reddit community!​I've just published a library https://pub.dartlang.org/packages/snaplist#-readme-tab-. It is for creating lists which snips to a specific position. I'd like to hear from you how does it feel, because it is my first library EVER!​The github repo is here https://github.com/ariedov/flutter_snaplist. I'd love if you fire issues, write pull requests and press the star icon at the top.

Submitted October 26, 2018 at 12:50PM by ariedov
via reddit https://ift.tt/2z4SvPQ