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

There's only 14 animated icons and half of them are just reversed versions of the other half.
So 7 use cases is not enough for these. Just be careful if you implement them in your project, you may not have what you're looking for. Add->close is simple and has a high demand, and yet not implemented. I'm not sure where anyone's at on adding more, but the latest beta still has the same 14 (7). No idea on how to create a custom one for my project and not sure if it is worth the trouble or not.Maybe give a like to the issue for visibility? https://github.com/flutter/flutter/issues/42461

October 09, 2020 at 07:35PM by joeyda3rd
https://ift.tt/3lz0CL1
New tweet from FlutterDev:

Time is running out ➡️ Don't forget to submit your app for the 2020 Material Design Awards and help us celebrate the products that bring the system to life!

📅 Deadline: October 16th 📅

🏆 https://t.co/TdGZe7xOwL— Material Design (@materialdesign) October 5, 2020

October 09, 2020 at 08:00PM
http://twitter.com/FlutterDev/status/1314626683371171842
New post on Flutter Dev Google group:

Flutter aad_oauth - How to get back to mobile app after the Microsoft authentication.
I created a mobile application using Flutter with Microsoft Azure. Basically, I would like to access the Azure Functions using the Microsoft account. Using my app I was able to access through web browser the Microsoft identity platform, I could Sign In using my credentials, but after that I

October 09, 2020 at 08:45PM by Vinícius Passarella
https://ift.tt/2IfvDp9
New post on /r/flutterdev subreddit:

[flutter-builder] generate flutter widget tree with typescript. (Just released!)
just released "flutter-builder" -- a oop based js/ts flutter widget tree builder for nodejs (star it if you like!)All major standard widgets and dart types are supported wrapped with typescript.this can be used for sketch / figma plugin development for flutter. with general usage coverage. https://github.com/bridgedxyz/flutter-builderthis package enables you to generate flutter code from web/server platform. written in pure typescript. use flutter syntax from js for ease of development. and complex tree building.example ``` ts const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)}) console.log(text.build().finalize())// >> // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black))const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)})const row = new Row({children: [ text, ]})console.log(row.build().finalize())// >> // Row( // children: [ // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black)) // ] // ); ```

October 09, 2020 at 10:50PM by softmarshmallow
https://ift.tt/3iLqJgb
New post on Flutter Dev Google group:

Pie chart using charts_flutter package
I would like to use create a pie chart to display the following data with labels. I'm not sure how to use the below code. I will appreciate if you can share any example with me. https://ift.tt/2GA0P21 Data: iOS 10 Linux 12 Android 14 Windows 16

October 10, 2020 at 10:39AM by App Testing
https://ift.tt/2GIRLrx
New post on /r/flutterdev subreddit:

Auto complete problem in android studio
I will use '|' to indicate caret.
Column(mainAxisAlignment: center|) 
How come the auto-completion will suggest Alignment.center as first item?MainAxisAlignment.center is suggested as number 20 or something.
Doing the same thing with icon: or color: produces nice results

October 10, 2020 at 10:24AM by bonega
https://ift.tt/36PV62x
New post on Flutter Dev Google group:

Word Puzzle Grid
I am trying to create a word search puzzle using the flutter grid. I want to know how to use a swipe animation and record that event on each letter inside the grid.

October 10, 2020 at 12:28PM by Visakh Vijayan
https://ift.tt/2FlAnsi
New post on Flutter Dev Google group:

Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'.
Hello, I am granting appbundle using android studio. the working properly in simulator and mobile but when run flutter build appbundle then throwing this error. Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'. please help me regarding this issue. Thanks

October 10, 2020 at 12:35PM by Arshad Khan Sherani
https://ift.tt/3iJrJl3
New post on /r/flutterdev subreddit:

Issue #9 of Mobile Developers Cafe is out now, with loads of Flutter Dev articles and a lot more
https://ift.tt/34FKy3z

October 10, 2020 at 12:35PM by iranjith4
https://ift.tt/30R7uf0
New post on Flutter Dev Google group:

Get bounds()
Hello please help How to use get bounds LatLng in flutter leaflet ?

October 10, 2020 at 01:19PM by sona
https://ift.tt/3iKMBs8
New post on Flutter Dev Google group:

How can I open a website in an app made with Flutter and Dart?
I would like to develop following app: the first screen shows buttons. When the user clicks on a button, a website opens within the app. I have found the possibility that a web browser opens when the user clicks on a button. But the web browser doesn't open in the app, instead he opens outside

October 10, 2020 at 01:53PM by Di di
https://ift.tt/30RzcrQ
New post on /r/flutterdev subreddit:

Anyone who moved from Xamarin to Flutter?
I wonder if there is anyone who moved from Xamarin to Flutter and could share their experience. I personally have done very little with Xamarin but so far Flutter is simply better in every way. But maybe there are things that were better using Xamarin? Is there anything Xamarin can do that Flutter can not?

October 10, 2020 at 02:54PM by John28381
https://ift.tt/3jO5VWI
New post on /r/flutterdev subreddit:

Migrating from Xamarin?
Hi guys I'm working for a company that has a few decent sized xamarin apps. We're sick of Xamarin and are looking to migrate to flutter. Has anyone got any experience incrementally migrating to flutter? Maybe embedding some flutter features bit by bit? Thanks!

October 10, 2020 at 03:29PM by flutterBoi
https://ift.tt/2FidZQx
New post on Flutter Dev Google group:

Dual Screen
Dear Flutters, I have a device with two screens. Screen at the front of the device and the second screen in the back of the device. The back screen works as a mirror mode I want to display something else on the back screen How do I do this on the flap. It supports android device only

October 10, 2020 at 07:56PM by SaLeh Aleid
https://ift.tt/3dfx9mB
New post on /r/flutterdev subreddit:

Starflut or http
Hi everyone,I'm making an android application in which I need to use some python scripts. Basically, I need to take a picture in the app, use that picture in the python script and then the python script needs to "send back" a few images and some info.As I understand, starflut is the package intended to use when needing to implement python in Flutter. However, I can't seem to find any good documentation or examples which makes it pretty much impossible to use it. Can anyone help me with this problem? Or if not, is it doable to do this using http?Thanks!

October 10, 2020 at 07:33PM by BV62
https://ift.tt/33KwR3S