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

What are you using for Push Notifications and In-App Popup Messages
Hi folksThere are platforms out there like OneSignal, Urban Airship that help with push notifications, analytics, customer segmentation and in-app messages. Does anyone have a favourite, and why?T

December 08, 2020 at 02:39PM by tdaawg
https://ift.tt/2Ld5OaB
New post on Flutter Dev Google group:

Cloud backend Image processing
Good Morning/Good Afternoon Flutter community! I have a Flutter setup to Authentication using Google/Firebase, writing picture uploads to FireStore bucket and JSON data to Real-time DB. I would like to ask the community for help; does anyone know if there are plugins, tutorials, libraries for

December 08, 2020 at 03:50PM by Tse Ping Wong
https://ift.tt/3nahGIR
New post on /r/flutterdev subreddit:

[Flutter] New widget does not change after successful Google login
https://stackoverflow.com/questions/65202040/flutter-new-widget-does-not-change-after-successful-google-loginIf I press the button on the login page, Google login is successful. but Page does not change after successful loginWhen debugging, the'TestPage' constructor is called.main()run 'MyApp'instantiate & Render 'LoginPage'Click & Execute 'signInWithGoogle'Success Logininstantiate & Render 'TastPage'Why is TestPage not rendering?▽ import & main ▽
import 'package:flutter/material.dart'; import 'package:firebase_core/firebase_core.dart'; import 'package:flutter_signin_button/flutter_signin_button.dart'; import 'package:google_sign_in/google_sign_in.dart'; import 'package:firebase_auth/firebase_auth.dart'; Future<void> main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', home: LoginPage(), ); } } 
▽ Login Page ▽
class LoginPage extends StatefulWidget { @override _LoginPageState createState() => _LoginPageState(); } class _LoginPageState extends State<LoginPage> { User user; @override Widget build(BuildContext context) { return Scaffold( body: Center( child: SignInButton( Buttons.Google, onPressed: () { signInWithGoogle().then((value) => TestPage()); }, ), ), ); } 
▽ signInWithGoogle Function ▽
Future<User> signInWithGoogle() async { // Trigger the authentication flow final GoogleSignInAccount googleUser = await GoogleSignIn().signIn(); // Obtain the auth details from the request final GoogleSignInAuthentication googleAuth = await googleUser.authentication; // Create a new credential final GoogleAuthCredential credential = GoogleAuthProvider.credential( accessToken: googleAuth.accessToken , idToken: googleAuth.idToken, ); // Once signed in, return the UserCredential UserCredential userCredential = await FirebaseAuth.instance.signInWithCredential(credential); firebaseUser = userCredential.user; return userCredential.user; } } 
▽ TestPage UI ▽
class TestPage extends StatelessWidget { @override Widget build(BuildContext context) { return Container( child: Center( child: Text( 'Success Login', style: TextStyle(fontSize: 50.0, fontWeight: FontWeight.bold), ), ), ); } } 


December 08, 2020 at 05:01PM by DongpyoLee
https://ift.tt/2IxYCFi
New post on /r/flutterdev subreddit:

Navigator 2.0 is very complicated
Am I the only one who thinks that navigator 2.0 is way too complicated for handling routes. Curious mind wants to know what you guys are thinking about it ?

December 08, 2020 at 07:54PM by rikousik
https://ift.tt/3mY9Stf
New post on Flutter Dev Google group:

Exception: Gradle task assembleDebug failed with exit code -1
Running "flutter pub get" in hello... Launching lib\main.dart on AOSP on IA Emulator in debug mode... lib\main.dart:1 Exception: Gradle task assembleDebug failed with exit code -1 Exited (sigterm)

December 09, 2020 at 02:01AM by theKINGtv
https://ift.tt/3gqhfHu
New post on /r/flutterdev subreddit:

r/Slash, the reddit reading app, now has its first major update! Feedback appreciated!
Link to the app: https://play.google.com/store/apps/details?id=com.desokyapps.rslashHello everyone!Thank you to everyone who commented on my original post! I am back again, and now, rSlash has had it's first major update! Now, there is Markdown support, functioning back buttons, and a new Drawer that lets you filter between r/WritingPrompts and r/nosleep posts! Please let me know what you think!Also, here is a link to the github

December 09, 2020 at 01:24AM by vesperenth657
https://ift.tt/3mYlQ6d
New post on /r/flutterdev subreddit:

Advice any good QR and barcode scanner
Is there any good reference for QR and barcode scanner that include the possibility of multiple scan ? I could find any good reference ?Thanks for the help.

December 09, 2020 at 03:34AM by jojomtx
https://ift.tt/3qGNeb5
New post on /r/flutterdev subreddit:

Html data viewer issue with <script /> tags.
How to view Html text which is having <script/> tag?script content not loading in the current dependecies.please assist.View Poll

December 09, 2020 at 09:43AM by vinayJaiswalCIS
https://ift.tt/2JR0EAN
New post on Flutter Dev Google group:

Popup message in flutter map
Hello , please help me to show a popup message in the marker of flutter map. builder: (ctx) => new Container( child: IconButton(icon: Icon(Icons.camera_alt, color: AppTheme.PrimaryColor, ), onPressed: () => { Navigator.p

December 09, 2020 at 10:33AM by sona
https://ift.tt/3gsvvj6
New post on Flutter Dev Google group:

Maps Platform.
Hello, I've been working on an app which uses google maps and direction, and I created a billing account but my api call requests were still getting rejected then I found out that my billing account wasn't a 'map type' but it was a GCP account. So I want to ask if there is any extra charge for

December 09, 2020 at 11:43AM by Hassan Ansari
https://ift.tt/36YSsHo
New post on /r/flutterdev subreddit:

Creating an app of Retrofit in a flutter with very easy and understandable code
https://ift.tt/3n1SXX1

December 09, 2020 at 11:23AM by connectsteven
https://ift.tt/3grDblP
New post on /r/flutterdev subreddit:

Cheapest Mac/Apple computer to make iOS Flutter apps
Hello, I made my first android app recently for a job I got and they want me to make an iOS app of the same. Problem is, I don't have a Mac machine which is the only way I can develop iOS apps. So I was wondering what is the best capable Mac computer to do the task and at a reasonable price? Thanks in advance

December 09, 2020 at 11:18AM by Timndichu
https://ift.tt/39UyHTx
New post on Flutter Dev Google group:

flutter gallery rally app
is it possible to clone rally from flutter gallery?

December 09, 2020 at 12:47PM by Antonio Pinto
https://ift.tt/2IvQd5b
New post on Flutter Dev Google group:

Inspect Element Support on Flutter web apps.
I have been trying to integrate a web based product tour/on-boarding plugin which will help a new user to understand the application without any external intervention. I cam across this plugin : https://ift.tt/34aNCTm which works well with html websites, I tried integrating this with flutter

December 09, 2020 at 02:08PM by suvade...@gmail.com
https://ift.tt/2VWXQos