Reddit: Packages and Plugins - The Boring Flutter Development Show, Ep. 6
https://www.youtube.com/watch?v=ht2bDlJd2c4
Submitted August 15, 2018 at 09:03PM by Purple_Pizzazz
via reddit https://ift.tt/2vNu4Wh
https://www.youtube.com/watch?v=ht2bDlJd2c4
Submitted August 15, 2018 at 09:03PM by Purple_Pizzazz
via reddit https://ift.tt/2vNu4Wh
YouTube
Packages and Plugins in Flutter (The Boring Flutter Development Show, Ep. 6)
In this episode of The Boring Show, Andrew and Matt develop a Flutter plugin that can talk to the pressure sensor on Android and iOS devices. They define a Dart interface that apps can use, and wire it up to Java code with Flutter's Platform Channels, bringing…
GGroup: How to set up the Flutter mirror in China?
Hi: I'm a Flutter developer in China,I want to set up the Flutter mirror in my company,please tell me how to do it?
Submitted August 16, 2018 at 10:09AM by 寇德
via Flutter Dev https://ift.tt/2KYwJRE
Hi: I'm a Flutter developer in China,I want to set up the Flutter mirror in my company,please tell me how to do it?
Submitted August 16, 2018 at 10:09AM by 寇德
via Flutter Dev https://ift.tt/2KYwJRE
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
GGroup: Flutter IntelliJ Console can print whole data....
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Can see all data in IntelliJ. Suppose to print all data in console… But cant show the data… Any Help please Suppose to print like this: [
Submitted August 16, 2018 at 12:31PM by Niyazi Toros
via Flutter Dev https://ift.tt/2nH0zRJ
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Can see all data in IntelliJ. Suppose to print all data in console… But cant show the data… Any Help please Suppose to print like this: [
Submitted August 16, 2018 at 12:31PM by Niyazi Toros
via Flutter Dev https://ift.tt/2nH0zRJ
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
GGroup: Flutter print or debugPrint can show or print data in IntelliJ console?
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Cannot print in console all data in IntelliJ. Suppose to print all data in console… But cant print the data… Also I cannot see ALL data in List view.
Submitted August 16, 2018 at 12:41PM by Niyazi Toros
via Flutter Dev https://ift.tt/2Pe9kz2
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Cannot print in console all data in IntelliJ. Suppose to print all data in console… But cant print the data… Also I cannot see ALL data in List view.
Submitted August 16, 2018 at 12:41PM by Niyazi Toros
via Flutter Dev https://ift.tt/2Pe9kz2
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Add Search bar to code
So I am following a tutorial and I am wanting to add a search bar at the top of a contacts list page however I can't seem to get the search bar to even show up in my app. I was able to get the search bar working in my code initially by itself, but it wont show up like it used too. Im sure it will have something to do with the structure but any advice would be great. Any ideas? class SearchBar extends StatefulWidget { @override _SearchBar createState() => new _SearchBar(); }
Submitted August 16, 2018 at 12:09PM by SSJCalzana
via reddit https://ift.tt/2PeCgHd
So I am following a tutorial and I am wanting to add a search bar at the top of a contacts list page however I can't seem to get the search bar to even show up in my app. I was able to get the search bar working in my code initially by itself, but it wont show up like it used too. Im sure it will have something to do with the structure but any advice would be great. Any ideas? class SearchBar extends StatefulWidget { @override _SearchBar createState() => new _SearchBar(); }
class ContactsPage extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text("Contacts"), ), body: new ContactList(kContacts)); } } class ContactList extends StatelessWidget { final List<Contact> _contacts; ContactList(this._contacts); @override Widget build(BuildContext context) { return new ListView.builder( padding: new EdgeInsets.symmetric(vertical: 8.0), itemBuilder: (context, index) { return new _ContactListItem(_contacts[index]); }, itemCount: _contacts.length, ); } } class _ContactListItem extends ListTile { _ContactListItem(Contact contact) : super( title: new Text(contact.fullName), leading: new CircleAvatar(child: new Text(contact.fullName[0]))); }Search bar code:
class _SearchBar extends State<SearchBar> { Widget appBarTitle = new Text("Search Contacts..."); Icon actionIcon = new Icon(Icons.search); @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( centerTitle: true, title:appBarTitle, actions: <Widget>[ new IconButton(icon: actionIcon,onPressed:(){ setState(() { if ( this.actionIcon.icon == Icons.search){ this.actionIcon = new Icon(Icons.close); this.appBarTitle = new TextField( style: new TextStyle( color: Colors.white, ), decoration: new InputDecoration( prefixIcon: new Icon(Icons.search,color: Colors.white), hintText: "Search...", hintStyle: new TextStyle(color: Colors.white) ), );} }); } ,),] ), ); } }
Submitted August 16, 2018 at 12:09PM by SSJCalzana
via reddit https://ift.tt/2PeCgHd
reddit
r/FlutterDev - Add Search bar to code
1 vote and 0 comments so far on Reddit
GGroup: How to stream video from camera to a private server
Hi, I am working on a project for my company and we need to stream the video from the camera to our servers and I was wondering if that is even possible to do with the camera plugin. Reading the documentation I only saw the API to save a video to a file and nothing that resembles the ability to
Submitted August 16, 2018 at 04:25PM by João Paulo Farias
via Flutter Dev https://ift.tt/2KXtwSw
Hi, I am working on a project for my company and we need to stream the video from the camera to our servers and I was wondering if that is even possible to do with the camera plugin. Reading the documentation I only saw the API to save a video to a file and nothing that resembles the ability to
Submitted August 16, 2018 at 04:25PM by João Paulo Farias
via Flutter Dev https://ift.tt/2KXtwSw
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: I created a plugin to extract tiles from a mbtiles file
Pretty much the title. I hope is useful for someone trying to make an offline map.https://pub.dartlang.org/packages/flutter_mbtiles_extractorAny recommendation/suggestion is appreciated.
Submitted August 16, 2018 at 05:01PM by sekktor01
via reddit https://ift.tt/2KX6Y4t
Pretty much the title. I hope is useful for someone trying to make an offline map.https://pub.dartlang.org/packages/flutter_mbtiles_extractorAny recommendation/suggestion is appreciated.
Submitted August 16, 2018 at 05:01PM by sekktor01
via reddit https://ift.tt/2KX6Y4t
Dart Packages
flutter_mbtiles_extractor | Flutter Package
flutter_mbtiles_extractor Flutter and Dart package - A flutter plugin to extract the map tiles from an .mbtiles file.
Reddit: Flutter from Scratch - Parenting Animations
https://ift.tt/2BbpciZ
Submitted August 16, 2018 at 04:48PM by rajayogan27
via reddit https://ift.tt/2MRf5RN
https://ift.tt/2BbpciZ
Submitted August 16, 2018 at 04:48PM by rajayogan27
via reddit https://ift.tt/2MRf5RN
T-Pub :)
Flutter – Parenting Animations
Hi Friends, Hope you are all well. In this post let’s talk about parenting animations. Or resizing the widget in a fancy way onscreen.. :) To learn the basics of flutter get my course – Click…
GGroup: Re: Flutter IntelliJ Console can print whole data....
Sorry, it is hard to understand what the problem is. Can you describe it another way? Is it just printing some of the data on the console, but not all? Do you have some source code that we can look at that shows the problem? -Greg. On Thu, Aug 16, 2018 at 3:38 AM Niyazi Toros
Submitted August 16, 2018 at 05:36PM by G Spencer
via Flutter Dev https://ift.tt/2BhqusO
Sorry, it is hard to understand what the problem is. Can you describe it another way? Is it just printing some of the data on the console, but not all? Do you have some source code that we can look at that shows the problem? -Greg. On Thu, Aug 16, 2018 at 3:38 AM Niyazi Toros
Submitted August 16, 2018 at 05:36PM by G Spencer
via Flutter Dev https://ift.tt/2BhqusO
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
GGroup: How to set proxy for flutter app
I want to set proxy for my app like as set proxy for app with retrofit in android native. is this possible? actually i want to use proxy for firebase
Submitted August 16, 2018 at 09:18PM by Mohammad Meshkani
via Flutter Dev https://ift.tt/2nKxgOg
I want to set proxy for my app like as set proxy for app with retrofit in android native. is this possible? actually i want to use proxy for firebase
Submitted August 16, 2018 at 09:18PM by Mohammad Meshkani
via Flutter Dev https://ift.tt/2nKxgOg
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Send iOS and Android SMS and MMS in Flutter (Source Code github)
https://ift.tt/2nGbD1s
Submitted August 16, 2018 at 09:46PM by Pixelreddit
via reddit https://ift.tt/2KZRP24
https://ift.tt/2nGbD1s
Submitted August 16, 2018 at 09:46PM by Pixelreddit
via reddit https://ift.tt/2KZRP24
GitHub
AppleEducate/flutter_sms
Send iOS and Android SMS and MMS in Flutter. Contribute to AppleEducate/flutter_sms development by creating an account on GitHub.
Reddit: Flutter For Beginners - Episode 5 ListView
https://www.youtube.com/watch?v=oaqXK8C8ty4
Submitted August 16, 2018 at 09:42PM by RobertBrunhage
via reddit https://ift.tt/2wf8B8m
https://www.youtube.com/watch?v=oaqXK8C8ty4
Submitted August 16, 2018 at 09:42PM by RobertBrunhage
via reddit https://ift.tt/2wf8B8m
YouTube
Flutter For Beginners - Episode 5 ListView
Course to build a production-ready app 👉 https://robertbrunhage.com/course
Join the Discord Community: https://discord.gg/CPwSezC
2 month of free premium Skillshare ➡️ https://skillshare.eqcm.net/vY4ve
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https:/…
Join the Discord Community: https://discord.gg/CPwSezC
2 month of free premium Skillshare ➡️ https://skillshare.eqcm.net/vY4ve
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https:/…
Reddit: Just published my first plugin to uniquely identify devices even after reinstalls! Hope it helps some of you
https://ift.tt/2MwVk55
Submitted August 16, 2018 at 09:33PM by TheGigaDroid
via reddit https://ift.tt/2PdY8CH
https://ift.tt/2MwVk55
Submitted August 16, 2018 at 09:33PM by TheGigaDroid
via reddit https://ift.tt/2PdY8CH
Dart Packages
flutter_udid | Flutter Package
flutter_udid Flutter and Dart package - Plugin for getting a persistent UDID accross reinstalls on iOS and Android
GGroup: [Breaking Change] Deprecating CupertinoDialog
Hi All, *TL;DR: I'm planning to deprecate CupertinoDialog in favor of a new widget called CupertinoPopupSurface.* *Why?* There are currently 2 widgets in Cupertino called a "dialog": CupertinoDialog and CupertinoAlertDialog. CupertinoAlertDialog represents what an actual alert dialog looks
Submitted August 16, 2018 at 10:47PM by Matt Carroll
via Flutter Dev https://ift.tt/2Btw37J
Hi All, *TL;DR: I'm planning to deprecate CupertinoDialog in favor of a new widget called CupertinoPopupSurface.* *Why?* There are currently 2 widgets in Cupertino called a "dialog": CupertinoDialog and CupertinoAlertDialog. CupertinoAlertDialog represents what an actual alert dialog looks
Submitted August 16, 2018 at 10:47PM by Matt Carroll
via Flutter Dev https://ift.tt/2Btw37J
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Bitfolio - beautiful flutter app to manage your crypto
https://ift.tt/2nGIMKq
Submitted August 17, 2018 at 02:41AM by Xeo84
via reddit https://ift.tt/2Mhr4vA
https://ift.tt/2nGIMKq
Submitted August 17, 2018 at 02:41AM by Xeo84
via reddit https://ift.tt/2Mhr4vA
Google Play
Bitfolio - Bitcoin and crypto portfolio - Apps on Google Play
Bitfolio is the ultimate app you’ll need to maintain your cryptocurrency investment portfolio.
The cryptocurrency market is growing like never before and millions of people across the world are now investing their money into various digital currencies. …
The cryptocurrency market is growing like never before and millions of people across the world are now investing their money into various digital currencies. …
Reddit: Your experience with the Material and base widgets in Flutter? Better than Android native?
Initially I was very enthusiastic, but after working with Flutter for several months, my perception changed a bit.First of all, it is great that Flutter is truly cross-platform. Apps look and behave exactly the same on Android and iOS. Development with the widget system and hot reload is fast. Awesome!When I started with Flutter, I read that it has one of the most sophisticated Material implementations out there, even beating Android native. This is true for some widgets, like the app bar, buttons, form controls and the ink system. Those are highly customizable and follow the spec very closely.But when it comes to more complex widgets and animations, Flutter lags far behind. In particular:Performance is not on par with Android nativeListView
Submitted August 17, 2018 at 01:59AM by boformer
via reddit https://ift.tt/2L02oST
Initially I was very enthusiastic, but after working with Flutter for several months, my perception changed a bit.First of all, it is great that Flutter is truly cross-platform. Apps look and behave exactly the same on Android and iOS. Development with the widget system and hot reload is fast. Awesome!When I started with Flutter, I read that it has one of the most sophisticated Material implementations out there, even beating Android native. This is true for some widgets, like the app bar, buttons, form controls and the ink system. Those are highly customizable and follow the spec very closely.But when it comes to more complex widgets and animations, Flutter lags far behind. In particular:Performance is not on par with Android nativeListView
/
ReorderableListView/
AnimatedListare less powerful than Android's
RecyclerView, which is crucial for many applications. What makes
RecyclerViewso special are its animations and the diffing algorithm (
DiffUtil`) behind it. Things that do not exist in FlutterSortable list performance drops when there are too many itemsBottom sheets implementation is incompleteScrolling is always limited to one axis, no 2D scroll view.There is no way to define a tappable label for a checkbox or radio button.No vector drawables (flutter_svg and icon fonts fill the gap right now, but that's far from ideal)No way to draw dotted/dashed lines or bordersWhat's your experience?Submitted August 17, 2018 at 01:59AM by boformer
via reddit https://ift.tt/2L02oST
reddit
r/FlutterDev - Your experience with the Material and base widgets in Flutter? Better than Android native?
2 votes and 1 comment so far on Reddit
Reddit: Flutter: Building a Widget with StreamBuilder
https://ift.tt/2nMzgFn
Submitted August 17, 2018 at 01:02AM by Purple_Pizzazz
via reddit https://ift.tt/2nJI4fv
https://ift.tt/2nMzgFn
Submitted August 17, 2018 at 01:02AM by Purple_Pizzazz
via reddit https://ift.tt/2nJI4fv
Codingwithjoe
Flutter: Building a Widget with StreamBuilder | Coding With Joe
Just about every application has some sort of state they are always in. For example the application can be loading, processing a request such as an online payment, or waiting for user input. Well designed applications decouple the state of the application…
Reddit: Creating Custom Form Fields in Flutter – SAUGO 360 – Medium
https://ift.tt/2MvFJ5K
Submitted August 17, 2018 at 03:25PM by aalhamali
via reddit https://ift.tt/2MuXvpM
https://ift.tt/2MvFJ5K
Submitted August 17, 2018 at 03:25PM by aalhamali
via reddit https://ift.tt/2MuXvpM
Medium
Creating Custom Form Fields in Flutter
Learn to create custom fields that you can validate and submit with your forms
Reddit: Flutter from scratch - Transforming Animations
https://ift.tt/2L2EXsi
Submitted August 17, 2018 at 04:54PM by rajayogan27
via reddit https://ift.tt/2vLPqU7
https://ift.tt/2L2EXsi
Submitted August 17, 2018 at 04:54PM by rajayogan27
via reddit https://ift.tt/2vLPqU7
T-Pub :)
Flutter – Transforming Animations
Hi Friends, Hope you are all well. In this post let’s talk about transforming animations, or in simple changing a shape into another. To learn the basics of flutter get my course – Click here…
Enable the PerformanceOverlay to visualize possible jank in your app.
Read more about how to interpret these graphs and what to do with the insights → https://t.co/w4xV9cgeSf #FlutterFriday pic.twitter.com/Sg7zx7GMwO— Flutter (@flutterio) August 17, 2018
August 17, 2018 at 08:19PM
via Twitter https://twitter.com/flutterio
Read more about how to interpret these graphs and what to do with the insights → https://t.co/w4xV9cgeSf #FlutterFriday pic.twitter.com/Sg7zx7GMwO— Flutter (@flutterio) August 17, 2018
August 17, 2018 at 08:19PM
via Twitter https://twitter.com/flutterio