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

Is there any delegate methods for webview_flutter(Library)
Hi Is there any Delegate methods for webview_flutter. . (Ex: when we open a webpage with some quiz content how we can store the answers to server.) Can anyone help for this. Thanks&Regards G Rajkumar

April 30, 2019 at 01:11PM by rajkumar.g...@gmail.com
http://bit.ly/2IObkyh
New post on /r/flutterdev subreddit:

IChoosedFlutter-Reddit UI Clone made with Flutter
http://bit.ly/2DEXgTs

April 30, 2019 at 01:38PM by arslannmrv
http://bit.ly/2V4Vztj
New post on Flutter Dev Google group:

I want to scan barcode
does anyone know a fast plugin for scanning barcode I tried this http://bit.ly/2G8NDwB but it's not fast

April 30, 2019 at 02:26PM by Sherif Hassan
http://bit.ly/2DGhJXR
New post on /r/flutterdev subreddit:

Guide that helps you to present your app and its features in a beautiful, simple and customizable way.
http://bit.ly/2UNnBEp

April 30, 2019 at 02:20PM by rafaelbarbosatec
http://bit.ly/2ZMzUV9
New post on /r/flutterdev subreddit:

Is there a good tutorial on creating a “more” button on bottom nav
I have tried both the standard bottom nav and bmnav and I just wanted to created a more button to pop out from the bottom so I can show the few more items without sending it to a new page with links.

April 30, 2019 at 05:41PM by Sh-t_Shower_Shave
http://bit.ly/2USmZgS
New post on Flutter Dev Google group:

Any support for the microphone in iOS?
I am using package:mic_stream/mic_stream.dart for android - but this is not supported in iOS. Anyway to get a stream from the mic in iOS? thanks

April 30, 2019 at 07:06PM by cameron...@gmail.com
http://bit.ly/2vuxwVf
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