Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

The Draggable widget lets you quickly build drag-and-drop components into your app UI. You get to choose how things look to start, while in-flight, and on landing!

Click for more #WidgetoftheWeek tips. ↓ pic.twitter.com/P0KYSpRxxd— Flutter (@FlutterDev) April 30, 2019

April 30, 2019 at 07:50PM
http://twitter.com/FlutterDev/status/1123283503334940672
New post on Flutter Dev Google group:

ListView VS. CustomScrollView
Which one has a better performance? CustomScrollView + SliverGrid + SliverToBoxAdapter (used to divide grids into sections) or ListView + GridView + Row (used to divide grids into sections)

April 30, 2019 at 08:12PM by Ali EP
http://bit.ly/2vtszft
New post on /r/flutterdev subreddit:

Hello everyone !Do you have sites or YouTube videos to advise me to learn how structre an application and also for the design (the most suitable widgets, how to separate the files etc ...) ? Thanks !! 👍🏻
No text found

April 30, 2019 at 09:40PM by qsvtr
http://bit.ly/2DHrsgA
New post on Flutter Dev Google group:

E' REGISTA ASSASSINO E PEDERASTA: GIUSEPPE LAZZARI ( FINITO IN CARCERE PER QUESTO
E' REGISTA ASSASSINO E PEDERASTA: GIUSEPPE LAZZARI ( FINITO IN CARCERE PER QUESTO http://bit.ly/2n7sHLm ) 1 FA PARTE DI UNA SETTA SATANISTA MOLTISSIMO ASSASSINA. CON DENTRO I PARI SATANISTI STUPRA ED AMMAZZA BAMBINI: DANIELE MINOTTI,

April 30, 2019 at 10:24PM by LUIGI BISIGNANI-MAI PIU' COL PEDOFILO BERLUSCONI
http://bit.ly/2VFYGXO
New post on /r/flutterdev subreddit:

Flutter Clean Architecture: An implementation of Uncle Bob's Clean Architecture in Flutter. This package provides an easy way to write apps using the clean architecture. Please provide feedback. I have used it for one complete application so far.
http://bit.ly/2PCNd6f

May 01, 2019 at 01:49AM by shadyboukhary
http://bit.ly/2V6dK1L
New post on Flutter Dev Google group:

PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME ASSASSINO SILVIO BERLUSCONI, CHE ORA HA FATTO AMMAZZARE ANCHE LA PER BENISSIMO IMANE FADIL, DOPO AVER FATTO LO STESSO CON EGIDIO VERZINI ED EMILIO RANDACIO, http://bit.ly/2Lcw58J

May 01, 2019 at 02:42AM by MARIAGRAZIA CRUPI EXLESBOAMANTEDI MARINA-BERLUSCONI
http://bit.ly/2VFBFo3
New post on /r/flutterdev subreddit:

Widget for implementing multiple nested navigators with their own route stacks.
GitHubPluginUsage:
class RootPage extends StatefulWidget { @override State<StatefulWidget> createState() => _RootPageState(); } class _RootPageState extends State<RootPage> { @override Widget build(BuildContext context) { return NestedNavigators( items: { NestedNavItemKey.blue: NestedNavigatorItem( initialRoute: Routes.blue, icon: Icons.access_time, text: "Blue", ), NestedNavItemKey.red: NestedNavigatorItem( initialRoute: Routes.red, icon: Icons.send, text: "Red", ), NestedNavItemKey.green: NestedNavigatorItem( initialRoute: Routes.green, icon: Icons.perm_identity, text: "Green", ), }, generateRoute: Routes.generateRoute, ); } } 


April 30, 2019 at 12:23AM by novah5
http://bit.ly/2ZLTFfS
New post on /r/flutterdev subreddit:

How to handle zero data in Stream Builder with firestore in Flutter
Hello, I have question to handle zero data. For example bellow is my code. I want to show No data image, when there is no data from my collection, with filter. How can I do that? Thanks​​child: Card(
child: StreamBuilder<QuerySnapshot>(
stream: Firestore.instance.collection('xxxx).where('issuer', isEqualTo: xxx).orderBy("createdAt", descending: true).snapshots(),
builder: (BuildContext context,
AsyncSnapshot<QuerySnapshot> snapshot) {
if (snapshot.hasError)
return new Text('Error: ${snapshot.error}');
switch (snapshot.connectionState) {
case ConnectionState.waiting:
return new Text('Loading...');
default:
return new Column(
children:
snapshot.data.documents
.map((DocumentSnapshot document) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Container(
child: ListTile(onTap: (){
Navigator.pushNamed(context, 'xxxxx');
},
leading: Container(
decoration: BoxDecoration(
color: Colors.green,
borderRadius: new BorderRadius.all(Radius.circular(8.0))
),
width: 40,
height: 40,
child: document['status'] == 'pending' ? Icon(Icons.receipt, color: Colors.white,): Icon(Icons.account_balance_wallet, color: Colors.white)),
title: Text(xxxxx),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text("${xxxx}"),
Text("status: ${xxxx}")],
),
trailing: Icon(Icons.chevron_right, color: document['xxxxx'] == true ? Colors.grey: Colors.blue ,)
),
),
Divider()
],
),
);
}).toList(),);}
},
)
),

May 01, 2019 at 08:26AM by mochfauz
http://bit.ly/2J8JlZ9
New post on /r/flutterdev subreddit:

frideos_kvprx | A Flutter package to easily store key/value pairs and stream based classes to update the UI accordingly.
https://pub.dartlang.org/packages/frideos_kvprx​It is just the very first version. Any suggestion or feedback is really appreciated.

May 02, 2019 at 12:27AM by frideosapps
http://bit.ly/2LjTSDC
New post on /r/flutterdev subreddit:

Notifications
Is anybody use Local and Push notifications simultaneously in the flutter app?

May 01, 2019 at 11:17PM by mrLisin
http://bit.ly/2J5ea0S
New post on /r/flutterdev subreddit:

Widget for implementing multiple nested navigators with their own route stacks.
http://bit.ly/2GytUYO

May 01, 2019 at 09:55PM by novah5
http://bit.ly/2WggyWo
New post on Flutter Dev Google group:

Speech Recognition from MP3 or WAV file?
I would like to record speech and then feed it to speech recognition library, or have the library stream the mic data so I can store it. I found this package: http://bit.ly/2skDMiM I dont see anything in the packae where I can feed it a wav file, or have it stream

May 02, 2019 at 06:36AM by cameron...@gmail.com
http://bit.ly/2WpvFx3
New post on Flutter Dev Google group:

Implementation of "flutter_webview_plugin".
Hi Can anyone help me on Implementation of "flutter_webview_plugin". To use webview delegate methods { shouldStart, startLoad, finishLoad, abortLoad } in fliutter. If any possibilities please provide me simple example. Thanks & Regards G Rajkumar iOS Developer

May 02, 2019 at 12:45PM by rajkumar.g...@gmail.com
http://bit.ly/2IX8gQn