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

Stream's Flutter SDK 1.0.0 Beta released
https://ift.tt/2YNFS9f

February 04, 2021 at 08:18PM by MarkOSullivan
https://ift.tt/3ttkYKr
New post on Flutter Dev Google group:

How to run integration tests for iOS
As a non-swift developer, I'm having trouble understanding the documentation for running integration tests at https://ift.tt/2LiWlPt : - Where is 'iOS/Podfile' located? - Do I need to create the file 'RunnerTests.m' myself? If so where should I put this

February 04, 2021 at 09:47PM by Ali Akhtar
https://ift.tt/3tqUJo4
New post on /r/flutterdev subreddit:

Accelerating app development with Flutter - Learn how eBay Motors created a quality app using Flutter
https://ift.tt/3oPlZJl

February 04, 2021 at 09:47PM by Elixane
https://ift.tt/3ro6s4S
New post on Flutter Dev Google group:

Flutter 1.26.0-17.2.pre released to the beta channel
Hi all, I’m happy to announce that Flutter 1.26 / Dart 2.12 beta builds are now available on the beta channel: 1.26.0-17.2.pre
New post on /r/flutterdev subreddit:

Does anyone else avoid the var keyword?
Curious if I am a weird minority here.I try to never use the var keyword. When reading through code, I find it more desirable to always see the explicit types. In addition it makes it nice and easy to 'jump to definition'...especially with template argument types.Obviously a scenario like the following is not that beneficial, since they type is already obvious...var myVar = Foo();But for the following example, I prefer to not use var...Foo myVar = someFunctionThatReturnsSomething();Thoughts?

February 04, 2021 at 11:53PM by scorr204
https://ift.tt/3aB7unj
New post on /r/flutterdev subreddit:

Paper Text Field in Flutter
Learn how to create a Paper Like Text Field in Flutter. Everything is a widget!https://jaycoding.tech/tutorials/guides/make-a-text-field-look-like-real-paper-i-fdziot

February 05, 2021 at 12:09AM by jaycoding
https://ift.tt/3cJ2e3Y
New post on /r/flutterdev subreddit:

[News]Flutter Desktop is beta Now!
Flutter 1.26.0-17.2.pre is now available on the beta channel.https://flutter.dev/docs/development/tools/sdk/releases​And Flutter Desktop support is landed in beta: https://github.com/flutter/flutter/issues/73857Texture support landed for WindowsSeveral desktop problems sovled, especially about mouse and keyboard event handling​Checkout the full changelog:Github project for Flutter macOS beta: https://github.com/flutter/flutter/projects/53Github project for Flutter Windows beta: https://github.com/flutter/flutter/projects/55Github project for Flutter Linux beta: https://github.com/flutter/flutter/projects/56​Bonus:UWP support is on the way: https://github.com/flutter/flutter/issues/14967Arm64 host support is on the way: https://github.com/flutter/flutter/pull/61221

February 05, 2021 at 02:52AM by sunbreakwang
https://ift.tt/3jkh6qv
New post on /r/flutterdev subreddit:

Figma to Flutter Plugins in 2021
Hello GuysI know this has been discussed already a couple of times, but I thought in a such so fast paced environment, it might again be different. I got new into app development and I love Figma for designing and make clickable prototypes.I have seen there are plugins in Figma for exporting directly to flutter. Now my question is, do you guys really use it? I mean the idea would be very cool, to export complete pages and then you would just have to link the buttons. But I think if it would really work that easy, everybody would do it like this and there would be 500 youtube tutorials of people making apps in 20 minutes. ;-)I know there is a kind of similar way using bravo, but I don‘t want to use low-code options and further tools.Thanks for any advice and best regards30DaysOfFlutter

February 05, 2021 at 02:50AM by The_Miuuri
https://ift.tt/3oRZjbv
New tweet from FlutterDev:

📝 More than 5,000 of you have already signed up to join us for #FlutterEngage, we can barely contain our egg-citement!

💙 Are you in? ↓ https://t.co/T9025C5NCV— Flutter (@FlutterDev) February 5, 2021

February 05, 2021 at 03:34AM
http://twitter.com/FlutterDev/status/1357517962454814720
New post on /r/flutterdev subreddit:

Simple Button Click In Flutter
In Fluter Everything is a widget, So to perform a simple button click operation we need to add WIDGET.We need to import certain library,import 'package:flutter/material.dart';void main() {runApp(MyNewApp());}Let's understand line by line of codemain function(), automatically executed when apps start executing. RunApp() tells flutter to draw something on the screen. So, for that, it uses “MyNewApp()” class.Read more:- https://www.becomeadeveloper.in/2020/12/Flutter-Button-on-Pressed.html

February 05, 2021 at 04:49AM by Programmingwithme
https://ift.tt/39QMcD8
New post on Flutter Dev Google group:

can i develop window desktop app by flutter?
i will desktop app by c# (.net) but i wanna dev by flutter. I see below : Desktop support for Flutter - https://ift.tt/38L1ib1 but i can't see the way of support on desktop. if there are links of doc, please know me.

February 05, 2021 at 05:20AM by Gwen Choi
https://ift.tt/3cHYT5d
New post on Flutter Dev Google group:

Implementing the video content of Xcode to flutter project
Hello! I'm using vscode developing flutter application that shows live streams. I want videos to run outside of the application and floating on the screen so the users can multitask. I tried to use the function that Xcode suggests, but as the beginner of flutter and non-swift developer it is too

February 05, 2021 at 05:28AM by 임태준
https://ift.tt/36Jwec2
New post on Flutter Dev Google group:

FAILURE: Build failed with an exception.
Hello everyone, I'm getting this error whenever I try to build my project. The project's working fine before I added firebase_auth package. But then it didn't build instead I got this exception. Please help me out. ################################################ FAILURE: Build failed with an

February 05, 2021 at 07:26AM by resha...@gmail.com
https://ift.tt/3cIWUNV
New post on /r/flutterdev subreddit:

Have a feeling that ValueNotifier/ValueListenableBuilder loses frames. How I can check that it's true?
I just "optimized" everything, so instead of setState the VN/VLB handles UI's updating. And it seems that there are kind of a microjumps in my animations. Is that possible given that they (ValueNotifier and ValueListenableBuilder) were created for optimization purposes? TIA!

February 05, 2021 at 08:38AM by 2reform
https://ift.tt/3rtJgCx
New post on Flutter Dev Google group:

dart files got totally changed and found 'part of dart.convert;' in each file
i don't know what is this, it's weird when i open dart files after a long to do some change, i found there is no more my code, it's totaly changed one of them as - // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this

February 05, 2021 at 09:14AM by Raman Plaha
https://ift.tt/3oXsHgI
New post on /r/flutterdev subreddit:

Syncing local db with remote (Moor and Hasura) [LIVESTREAM]
https://ift.tt/2LDOkoy

February 05, 2021 at 10:15AM by uhossein
https://ift.tt/2YKpaaz
New post on Flutter Dev Google group:

Please test our hackathon app and provide us with feedback
I'm glad to announce that our team, which was started thanks to this mailing list 3 weeks ago, has a first APK version out there for testing and we'd love to hear your feedback. Download APK here