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

debugPrint and the power of hiding and customizing your logs in Dart
https://ift.tt/2F75LGU

March 17, 2019 at 12:36AM by Vanethos
https://ift.tt/2TLpZ2T
New post on /r/flutterdev subreddit:

Learning Flutter + Vim
I am a long time native Android developer. My wish is to learn vim, however I didnt have proper chance to learn that skill while working with native.What so you think would it be possible to learn both skill at the same time?

March 17, 2019 at 02:22AM by Pavle93
https://ift.tt/2O8zPpv
New post on /r/flutterdev subreddit:

Help me with this problem PLzz???
​https://i.redd.it/3fg4ylqu4mm21.png

March 17, 2019 at 06:13AM by Abhishekraj2003
https://ift.tt/2FaVEk2
New post on /r/flutterdev subreddit:

My New Flutter Tutorial Series
I will upload more videohttps://www.youtube.com/playlist?list=PLOvEA8-W5LWkm6kixEj4Yx4Ho71bbOdGj​

March 17, 2019 at 06:50AM by htetwaihlaing
https://ift.tt/2Y0n4BW
New post on /r/flutterdev subreddit:

How to install Flutter sdk in android studio?
Help me

March 17, 2019 at 07:24AM by Abhishekraj2003
https://ift.tt/2TNNMi3
New post on Flutter Dev Google group:

Compiler Error
While running my app i got the following error: Compiler message: org-dartlang-debug:synthetic_debug_expression:1:16: Error: Can't find ')' to match '('. const TextStyle( ^ Compiler failed on D:\AndroidStudioProjects\e_cricket_voting\lib\main.dart Finished with error: Gradle

March 17, 2019 at 07:45AM by Kamran Ali
https://ift.tt/2JgaVpa
New post on /r/flutterdev subreddit:

Build WhatsApp With Flutter 😁
https://ift.tt/2JsrsGS

March 17, 2019 at 07:50AM by NearbyCover7
https://ift.tt/2UER6t5
New post on /r/flutterdev subreddit:

FlutterForce β€” Week 18
https://ift.tt/2T7H6XH

March 17, 2019 at 10:03AM by flutterist
https://ift.tt/2HrZvwJ
New post on /r/flutterdev subreddit:

Build WhatsApp with Flutter 😁
https://ift.tt/2UHB7KO

March 17, 2019 at 09:55AM by NearbyCover7
https://ift.tt/2HCmLr9
New post on Flutter Dev Google group:

RenderFlex overflowed
After tapping text field i got the following error: I/flutter (31901): ══║ EXCEPTION CAUGHT BY RENDERING LIBRARY β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β• I/flutter (31901): The following message was thrown during layout: I/flutter (31901): A RenderFlex overflowed by 278 pixels

March 17, 2019 at 11:33AM by Kamran Ali
https://ift.tt/2ubQbo7
New post on /r/flutterdev subreddit:

Is this tab behaviour possible in Flutter? (taken from material.io)
https://ift.tt/2TbLAfC

March 17, 2019 at 11:14AM by themindstorm
https://ift.tt/2Y1lbVw
New post on Flutter Dev Google group:

Get Access Token with REST API in flutter/dart
Hi All, Here is my main.dart : Future getData() async { Map connection = { 'grant_type': 'string', 'branchcode': 'string', 'password': 'string', 'username': 'string', 'dbname': 'string', 'dbuser': 'string', 'dbpassword':

March 17, 2019 at 12:24PM by Kaan Karamanoğlu
https://ift.tt/2HDaCCr
New post on /r/flutterdev subreddit:

BroadcastReceiver in flutter to make a call receiver app
I am trying to make an app which will replace default call receiver app in android, any idea how can I do that??? In native it is possible to achieve this via BroadcastReceiver however I am a newbie in native mobile app development, any help is appreciated

March 17, 2019 at 12:11PM by deepakjha14
https://ift.tt/2uaO5F5
New post on Flutter Dev Google group:

How to make an in app tutorial with flutter
Hi everyone, I am looking for tips and tuts on how to make an in app tutorial for my users who first connect / open my application. Can you guys show me the way? Cheers.

March 17, 2019 at 12:56PM by zehi jean
https://ift.tt/2Jij3FS
New post on /r/flutterdev subreddit:

Calender app with flutter
Hello guys.. These days I started to learn flutter..Then, several days ago i got a project to make a, more like scheduler app that works on website, ios and android.. I think it could be done with flutter for the mobile development side..So, Is it possible to make an app like Google calendar in Flutter that have basic feature, ex: crud functions and reminders..? If so, how could i do that? And what should i learn first?I didnt do much research yet.. Any help is appreciated,sorry for my bad eng.. Thanks..

March 17, 2019 at 12:56PM by aachan13
https://ift.tt/2HCtMs8
New post on /r/flutterdev subreddit:

Page Controller Carousel
I would like to add a carousel to my page, when i scroll a new page is fetched from API. When i reload the data list i am showing, the page controller wont navigate at this page. However it navigates to the required page on start. when i use jumpToPage it navigates but with a flicker, any idea how to remove it ??
Widget _buildCarousel(BuildContext context) { return StreamBuilder( stream: bloc.getUserMeetingsResponse, builder: (BuildContext context, AsyncSnapshot<List<MeetingModel>> snapshot) { if (snapshot.hasData) { pc = PageController(viewportFraction: 0.8 , initialPage: UserUtil.getUserRole(AppSharedData().userID) == UserRole.student ? 0: bloc.getDesiredPage()); Widget view = new Container( child: new Column( mainAxisSize: MainAxisSize.max, children: <Widget>[ SizedBox( // you may want to use an aspect ratio here for tablet support height: Dimension.cardHeightRegular , child: new PageView.builder( // store this controller in a State to save the carousel scroll position controller: pc, itemCount: snapshot.data.length, itemBuilder: (BuildContext context, int itemIndex) { return HorizontalCarouselClassCell(meetingModel: snapshot.data[itemIndex]); }, onPageChanged: (pageNumber) { bloc.pageChanged(pageNumber); }, reverse: false, ), ) ], ), ); if(!bloc.isAddOnList){ Future((){ pc.jumpToPage(bloc.getDesiredPage()); }); } return view; } else if (snapshot.hasError){ print("Error Received"); } return Container(); }, ); } 
​

March 17, 2019 at 01:34PM by Caroline171
https://ift.tt/2FjuvNj
New post on Flutter Dev Google group:

Widget If Else
Hi, i am trying to add more if else condition my flutter project please check my code new Expanded( child: new Center( child: new Text( "\$$_viewmoney", style: new TextStyle( color: _viewmoney > 2500 ? Colors.red : Colors.pink ,// _viewmoney is set by(int _viewmoney = 0; fontSize: 25, ), ), )),

March 17, 2019 at 04:02PM by Deepjyoti Baishya
https://ift.tt/2Y379Tp
New post on /r/flutterdev subreddit:

Audio player with playback speed
Hello Friends!I'm trying to create an app that needs to play audio. And therefore i thought it would be very nice to adjust the playback speed.Checked out this package here: audioplayers, but it doesn't seem to support playback speed.If you know any package that can adjust the playback speed, please let me know!

March 17, 2019 at 04:36PM by Maltmax
https://ift.tt/2TbGdNJ