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

It feels like Flutter does everything, should I learn HTML, CSS, and JS?
I am preparing for a coding project where I will be creating a chrome extension. I have seen a lot of people say that I need to learn HTML, CSS, and JS to do that. I'm not sure if the answers that I have seen are outdated, but it seems like you can use Flutter to make a chrome extension. Should I even attempt to learn HTML, CSS, and JS then?

December 08, 2020 at 06:00AM by EdgedSurf
https://ift.tt/3oxEz95
New post on Flutter Dev Google group:

Flutter installation Windows 10
I would like to ask regarding installation of flutter on Windows 10. How can i solve this problem using flutter doctor, it said that I need to install flutter and dart plugin in android studio, I did install the plugin but when I check using flutter doctor it keep said that I need to install

December 08, 2020 at 09:40AM by Wahyu S
https://ift.tt/3qxbMn7
New post on Flutter Dev Google group:

File upload
Hey has anyone done the AWS s3 file upload through binary and while uploading my binary post body data is going wrong so not able to upload image. {Content-Type: image/jpeg; charset=utf-8, Connection: Keep-Alive, Accept: */*, x-amz-content-sha256: 07ae51032b3324c1d09a0cc5a29fa7e974a7a29f0f440f

December 08, 2020 at 10:42AM by Thanos
https://ift.tt/2VU0zia
New post on /r/flutterdev subreddit:

What is your primary development area, before Flutter?
A friend made the claim that iOS developers don’t care about Flutter. The Flutter team runs quarterly surveys - but I could not find anything. I’m thinking surely plenty of iOS devs see the value of Flutter. I am not expecting them to outnumber Android devs, but I am curious 🧐View Poll

December 08, 2020 at 11:12AM by ouaochi
https://ift.tt/37Jb0L3
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