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

Flutter query
Is ther any package to add multiple filters in video ? Or any suggestion to fetch all frames of video?

August 27, 2020 at 12:26AM by KamleshPawar1234
https://ift.tt/3hyzU3A
New post on /r/flutterdev subreddit:

Defining a new .dart file to the main.dart file
I have a problem when creating a new dart file instead of main.dart.`import 'package:flutter/material.dart';​class LCPage extends StatelessWidget {​void AccountManagement(){print("Manage Your Account");}​void AvailableAreaSearching(){print("Search for an Available Area");}​void ItemTapped(int index){setState(() {_selectedIndex = index;});}​u/overrideWidget build(BuildContext context) {// TODO: implement buildreturn Scaffold(appBar: AppBar(actions: <Widget>[IconButton(icon: Icon(Icons.account_box),tooltip: "Account Management",onPressed: AccountManagement,),IconButton(icon: Icon(Icons.search),tooltip: "Search for an Available Area",onPressed: AvailableAreaSearching,),],),body: Center(child: RaisedButton(onPressed: () {Navigator.pop(context);},child: Text("Go Back"),),),​bottomNavigationBar: BottomNavigationBar(items: <BottomNavigationBarItem> [BottomNavigationBarItem(icon: Icon(Icons.home), title: Text("Home")),BottomNavigationBarItem(icon: Icon(Icons.announcement), title: Text("Announcements")),BottomNavigationBarItem(icon: Icon(Icons.add_call), title: Text("Contact Us")),],currentIndex: _selectedIndex,onTap: ItemTapped,fixedColor: Colors.blue,),);}}`​The problem is that`setState(() {_selectedIndex = index;});}`​and`currentIndex: _selectedIndex,`can't be defined in this new dart file while they can be defined in main.dartmy question is what is wrong with my code?Thanks.

August 27, 2020 at 12:19AM by DiyarJ
https://ift.tt/2Qqkoeb
New post on Flutter Dev Google group:

Flutter - Video Editor
I want to edit my video with multiple filters. Is there any package available or any suggestions?

August 27, 2020 at 01:10AM by Vrushabh Desai
https://ift.tt/3hwAT4B
New post on /r/flutterdev subreddit:

Today I just re-run an old app our team built last year. Flutter is awesome!
https://www.youtube.com/watch?v=UzBPYW3HXoo

August 27, 2020 at 09:41AM by tranhuyphuc
https://ift.tt/2Qx4j6s
New post on Flutter Dev Google group:

Live tracking
Is it possible to live tracking in flutter? I want to help about live tracking because I am new in flutter. Any library or tutorial?

August 27, 2020 at 09:19AM by john786
https://ift.tt/3lkOjCV
New post on /r/flutterdev subreddit:

This is a demographic chart our team (Nextfunc - https://nextfunc.com) built last year. We used Animation, AnimationController, Curves and maths. We will refactor the code and open source the chart part soon!
https://www.youtube.com/watch?v=UzBPYW3HXoo

August 27, 2020 at 10:22AM by tranhuyphuc
https://ift.tt/3bcFeYp
New post on Flutter Dev Google group:

Can I place ads every 4 grids on the GridView?
[image: bbb.png] I looked for a reference for applying this to Flutter, but it didn't really help. Maybe you can help me to create a GridView that is inserted with an ad every 4 grids.

August 27, 2020 at 10:46AM by Serarinne
https://ift.tt/3gzYX5h
New post on Flutter Dev Google group:

Whatsapp community for developers
Deve*lopers View Point* Hello Everyone. Are you a developer or beginner in development. Is you got any problems on development and need help from others . So here comes Developers View Point (DVP) . Dvp provides several Global community for developers who need solutions on problem. And support

August 27, 2020 at 10:48AM by Vishnu Suresh
https://ift.tt/2EHNC60
New post on Flutter Dev Google group:

Exception : Gradle task assembleDebug with exit code -1. Can anyone help me with this!
Hey, I'm a flutter beginner. I just started studying flutter last month. Whenever I'm running the program, this exception occurs. I can't do anything because of this. I tried a lot and searched the internet but all just fails. Anyone can help me out of this!

August 27, 2020 at 11:39AM by Mohamed Rihan K
https://ift.tt/3b7YQg3
New post on /r/flutterdev subreddit:

Miniplayer functionality in flutter
I've created a package to simply create a miniplayer in flutter. This post is especially interesting for everybody who develops a flutter app with the ability to play media such as a music player.pub.dev/packages/miniplayer

August 27, 2020 at 12:38PM by VELSEM_
https://ift.tt/2D7fcZU
New post on Flutter Dev Google group:

Error with agora rtc engine plugin when release for iOS
Hi, dear community. I am working on an app using Agora RTC video conference service. It was released for Android well but for iOS I am living the next problem when I *flutter build iOS* Xcode version: 11.3.1 Flutter: 1.12.13+hotfix.9-pre.1 agora_rtc_engine: 1.0.12 Failed to build iOS app

August 27, 2020 at 01:47PM by Luis Ernesto Páez
https://ift.tt/2YCyQV0
New post on Flutter Dev Google group:

Loading effect
Hello guys, I want to know how to create loading effect in flutter like google news.

August 27, 2020 at 01:56PM by Gulam Fahad Ahmed
https://ift.tt/2ECsWMw
New post on /r/flutterdev subreddit:

XColor: a color used with generic hex color as string.
Use it like so.​ dart var color = XColor("#FF23232"); var icon = Icon(Icons.add, color: color); ​installation on pub:x_colorstar it on github if you like it!​demo app here.

August 27, 2020 at 02:18PM by softmarshmallow
https://ift.tt/2EGnQyG
New post on /r/flutterdev subreddit:

Cloud Firestore Changes
Does anyone will keep using <= 0.13 version since >=0.14 since now a lot of things was changed?Personally I didn't like the new syntax. I was so used to the terms it was using...do you guys think will I miss something great not updating? They are not improving, adding more features I guess...

August 27, 2020 at 03:43PM by D_apps
https://ift.tt/2YGnPSB
New post on Flutter Dev Google group:

I am getting an error for a long time of sdk version but not able to figure out the problem. Can someone please help?
Below is the screenshot

August 27, 2020 at 03:50PM by rakesh...@gmail.com
https://ift.tt/2G485Cz