Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

How to download text file in Flutter web application
I am new to Flutter and working in a flutter web application, My requirement is to create and download a text file like below. void getData() { List
New post on /r/flutterdev subreddit:

Flutter Shine is a library for pretty shadows, dynamic light positions, extremely customizable shadows, no library dependencies, text or box shadows based on content.
https://ift.tt/2Gcogup

January 21, 2020 at 11:09AM by jmonga98
https://ift.tt/38pqTF3
New post on /r/flutterdev subreddit:

JSON or MySQL, HOW and From where? In Flutter
Hello there everyone,I don't know whether this question would be allowed here in this community or not but still I will give it a try because i'm really confused​I've searched about this, All i want to know is what actually JSON is and how it will be helpful for me in Flutter development. I came to know it is used to manage API (Literally have no idea how?) Then somebody asked me to develop them an app where they can add data in database via JSON file (I don't know if that is possible).Second thing is about MySQL. I know it is database, but the thing is everybody implemented it in different ways some used PHP (I hate PHP) some didn't. So, little help here what is the best approach to use MySQL in flutter and What about JSON usage in flutter?​Thanks A lot for your time :) <3

January 21, 2020 at 02:28PM by m_hamzashakeel
https://ift.tt/36ePawe
New post on /r/flutterdev subreddit:

How do I build this Calendar layout/UI?
I am trying to make a calendar for my app and for this,and while I can just use a plugin, i've chosen not to, and I decided to implement it myself. I've chosen this approach: I have a list of text widgets that go from Monday to Sunday
List<Widget> days = [ Text("Sun"),Text("Mon")....Text("Sat") ]; 
Next, I have several lists of all the weekdays
List<Widget> mon = []; List<Widget> tue = []; // and so on 
Now, i this have method that loops through all the days in the given month, and stores the week days in their respective list. i.e,it would store 1 in wed list, 2 in thurs list (for this month) like so:
 for(int i=1;i<=lastDay.day;i++){ var date = new DateTime.utc(dateToday.year,dateToday.month,i); if(date.weekday == 1){ mon.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 2){ tue.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 3){ wed.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 4){ thur.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 5){ fri.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 6){ sat.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 7){ sun.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } } } 
So the layout i want to achieve is like this: basically i want to display the weekdays like Sun Mon Tues Wed and so on, and underneath each date, i would like to display the list of weekday(like list mon) like this: Sun Mon ... and so on
5 6
12 13
19 20
here's a rough sketch: https://imgur.com/a/el2xQdV

January 21, 2020 at 04:41PM by KarmaRekts
https://ift.tt/2GcGfRg
New post on /r/flutterdev subreddit:

Learning Dart and Flutter
hi.i want to learn dart so than i can make apps with flutter.Now i only know the basics of python(took an codecademy course and made some personal beginner projects/automations).From where should i learn dart?which is the best site,course,book,etc?and how hard is dart to learn?

January 21, 2020 at 05:41PM by vld4k
https://ift.tt/2GbrluQ
New post on /r/flutterdev subreddit:

My Space & Time Clock for the Flutter Clock Challenge
I built this for the flutter clock challenge, code is heavily documented with lots of neat dart/flutter tricks.Give it a look @
https://github.com/ahammer/adams_clock

January 21, 2020 at 06:16PM by HaMMeReD
https://ift.tt/38uBL4u
New post on /r/flutterdev subreddit:

I made a free to use podcast api. Take it if you want.
https://ift.tt/2RcRxLG

January 21, 2020 at 05:57PM by mknabe
https://ift.tt/36gw8pf
New post on /r/flutterdev subreddit:

I published my first Flutter plugin and I'd be delighted if you took a look. It's called Clay Containers, and it's an attempt at making implementing neumorpism a bit easier.
You can find it on pub.dev here, or on Github here.Similar plugins tend to rely on the user starting with a particular background color. My plugin attempts to be as customizable as possible while still making the overall process a bit easier.I'm very open to suggestions and/or pull requests.

January 21, 2020 at 06:42PM by mca62511
https://ift.tt/2TJemsb
New post on /r/flutterdev subreddit:

Scrollable stack for Time Table
I want to create design in this link https://dribbble.com/shots/4576289-Time-shifts-Configurationand think about using Stack, however maybe you can recommend better way to create this design or help with implementing my idea with scrollable stack.

January 21, 2020 at 06:36PM by hellomik
https://ift.tt/2vaOQBU
New post on /r/flutterdev subreddit:

Time and Space clock - Flutter Clock Challenge
https://ift.tt/37joTOw

January 21, 2020 at 07:22PM by HaMMeReD
https://ift.tt/36eFodp
New post on Flutter Dev Google group:

[Breaking Change Proposal] Element subclasses must call super in forgetChild.
If your app does not subclass Element
New post on /r/flutterdev subreddit:

converting flutter to electron
​hi guysso i have questions that seems stupid maybe for you i have never used flutter before so sorrycan i convert flutter to electron ?? i need a desktop app and flutter desktop still under devif i can't does flutter produce html and css code or what ?? if iam asking because if yes i will take that code and dev with electronty

January 21, 2020 at 08:09PM by younlok
https://ift.tt/2Rd6TQk
New post on /r/flutterdev subreddit:

Flutter Widget In Focus — Chip (Know It All)
https://ift.tt/2GdFSpA

January 21, 2020 at 07:17AM by pinkeshdarji
https://ift.tt/2G9fdKE
New post on /r/flutterdev subreddit:

7 more flutter chart types added to Syncfusion's Flutter charts. Now you have 25+ chart types to use in your flutter application.
https://ift.tt/30QGDyF

January 21, 2020 at 08:03AM by michaelprabhu
https://ift.tt/2RfP1V2
New post on /r/flutterdev subreddit:

From a failed flutter clock attempt, a lib that calculates sunrise and sunset times given coordinates. Implemented a famous algorithm linker on Readme.
https://ift.tt/2GebITo

January 21, 2020 at 10:20PM by renancaraujo
https://ift.tt/36g6BMI
New post on Flutter Dev Google group:

Flutter driver support for Native UI elements (webview)
Hi, Does Flutter have any plan to support native UI elements such as Webview and System dialogs? This is an integration test blocker for apps that use native components. I noticed they are working on an espresso library to allow native UI test to access flutter view but that would require us to

January 22, 2020 at 12:54AM by Ravuth Long
https://ift.tt/30GMyGg
New post on /r/flutterdev subreddit:

Google Maps for Flutter Web
https://ift.tt/37epDok

January 22, 2020 at 02:53AM by Dazza5000
https://ift.tt/38tXg5y