New post on /r/flutterdev subreddit:
Flutter listview with swipe to delete
https://youtu.be/KJVo7A3tu0c
January 28, 2019 at 09:51AM by ishanfx
http://bit.ly/2G8F46R
Flutter listview with swipe to delete
https://youtu.be/KJVo7A3tu0c
January 28, 2019 at 09:51AM by ishanfx
http://bit.ly/2G8F46R
YouTube
Flutter - Implement swipe to delete for Listview
New post on /r/flutterdev subreddit:
Tutorials: Flutter Widgets 14 | PopupMenuButton – @niebin_gg @flutteropen – Medium
http://bit.ly/2G4JVWq
January 28, 2019 at 12:06PM by nb312
http://bit.ly/2CKlQ3O
Tutorials: Flutter Widgets 14 | PopupMenuButton – @niebin_gg @flutteropen – Medium
http://bit.ly/2G4JVWq
January 28, 2019 at 12:06PM by nb312
http://bit.ly/2CKlQ3O
Medium
Widgets 14 | PopupMenuButton
In this tutorial, you will learn how to use the PopupMenuButton in the flutter.
New post on /r/flutterdev subreddit:
Scroll to top of page
I am trying to find a way to automatically scroll to the top of page when I filter a list. Here is my filter method:
January 28, 2019 at 02:11PM by UnqleSquid
http://bit.ly/2WmTFRC
Scroll to top of page
I am trying to find a way to automatically scroll to the top of page when I filter a list. Here is my filter method:
List<ReferenceItem> filterList(String type) {
return _referenceItems.where((ReferenceItem refItem) => refItem.itemType == type).toList();
}
It works perfectly for filtering items. However, if I am like halfway down the page when I initiate a filter, then after the filter is performed I am still around halfway down the list of new items. I'd like to just automatically scroll back to the top of the screen.January 28, 2019 at 02:11PM by UnqleSquid
http://bit.ly/2WmTFRC
reddit
r/FlutterDev - Scroll to top of page
1 vote and 0 comments so far on Reddit
New post on Flutter Dev Google group:
shuffle items
how can i get random values from json? Future makeRequest() async { var response = await http .get(Uri.encodeFull(url), headers: {"Accept": "application/json"}); setState(() { var extractdata = json.decode(utf8.decode(response.bodyBytes)); data = extractdata["
January 28, 2019 at 05:30PM by Almaz Amangaliev
http://bit.ly/2CSAPc4
shuffle items
how can i get random values from json? Future makeRequest() async { var response = await http .get(Uri.encodeFull(url), headers: {"Accept": "application/json"}); setState(() { var extractdata = json.decode(utf8.decode(response.bodyBytes)); data = extractdata["
January 28, 2019 at 05:30PM by Almaz Amangaliev
http://bit.ly/2CSAPc4
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.
New post on /r/flutterdev subreddit:
Bitrise vs Codemagic CI/CD
Anyone use Bitrise and Codemagic for CI/CD? Hard to decide which to use.I see Codemagic is specific for Flutter. But Bitrise has many good docs, mature, integrations.Anyone here from Bitrise or Codemagic can explain advantage/disadvantage?Or anyone is try both?
January 28, 2019 at 06:25PM by Flutter_Dev
http://bit.ly/2G55hD3
Bitrise vs Codemagic CI/CD
Anyone use Bitrise and Codemagic for CI/CD? Hard to decide which to use.I see Codemagic is specific for Flutter. But Bitrise has many good docs, mature, integrations.Anyone here from Bitrise or Codemagic can explain advantage/disadvantage?Or anyone is try both?
January 28, 2019 at 06:25PM by Flutter_Dev
http://bit.ly/2G55hD3
reddit
r/FlutterDev - Bitrise vs Codemagic CI/CD
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Making the appbar disappear
I am using webview_flutter to place a webview as the body of my scaffold. How can i make it disappear when i interact with the webview and bring it back when the user clicks at the now gone appbar space.
January 28, 2019 at 07:15PM by fardeen9983
http://bit.ly/2CRMeJ4
Making the appbar disappear
I am using webview_flutter to place a webview as the body of my scaffold. How can i make it disappear when i interact with the webview and bring it back when the user clicks at the now gone appbar space.
January 28, 2019 at 07:15PM by fardeen9983
http://bit.ly/2CRMeJ4
reddit
r/FlutterDev - Making the appbar disappear
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Replacing widgets dynamically
Now i want to replace my appbar title which is initially a Text widget to a search bar on the press of an action button on the same appbar. Also i would like to know if we can replace others widgets dynamically.
January 28, 2019 at 06:57PM by fardeen9983
http://bit.ly/2RT7GI1
Replacing widgets dynamically
Now i want to replace my appbar title which is initially a Text widget to a search bar on the press of an action button on the same appbar. Also i would like to know if we can replace others widgets dynamically.
January 28, 2019 at 06:57PM by fardeen9983
http://bit.ly/2RT7GI1
reddit
r/FlutterDev - Replacing widgets dynamically
1 vote and 3 comments so far on Reddit
New post on /r/flutterdev subreddit:
How do I create a Google Sheet from my app?
I am creating an app that will create a google sheet when the user puts in paramaters like name, number of rows, type of column titles, etc. I cannot find anything that shows me how to do this. I found this api, but I can't begin to understand how to use it. I have it installed, but that is as far as I understood.Any ideas on how I should mover forward?
January 28, 2019 at 06:28PM by Fosters_kid
http://bit.ly/2B6cUpK
How do I create a Google Sheet from my app?
I am creating an app that will create a google sheet when the user puts in paramaters like name, number of rows, type of column titles, etc. I cannot find anything that shows me how to do this. I found this api, but I can't begin to understand how to use it. I have it installed, but that is as far as I understood.Any ideas on how I should mover forward?
January 28, 2019 at 06:28PM by Fosters_kid
http://bit.ly/2B6cUpK
Dart packages
googleapis | Dart Package
Auto-generated client libraries for accessing Google APIs described through the API discovery service.
New post on /r/flutterdev subreddit:
Why Flutter?
This is not about whether Flutter is good or ugly. I have been coding natively for Android for some time, though interesting, it always ended up being repetitive and burdening to me. Flutter seems to me as an escape from writing multiple files of code repeating the same process and instead write clean, easily readable code. So this was why i love flutter. Why did you choose it?
January 28, 2019 at 08:56PM by fardeen9983
http://bit.ly/2sTzJZe
Why Flutter?
This is not about whether Flutter is good or ugly. I have been coding natively for Android for some time, though interesting, it always ended up being repetitive and burdening to me. Flutter seems to me as an escape from writing multiple files of code repeating the same process and instead write clean, easily readable code. So this was why i love flutter. Why did you choose it?
January 28, 2019 at 08:56PM by fardeen9983
http://bit.ly/2sTzJZe
reddit
r/FlutterDev - Why Flutter?
2 votes and 2 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter plugins pull request and CLA
Does anybody have any experience of making a contribution to the flutter/plugins repository and signing the CLA (Contributor Licence Agreement) on behalf of an employer? I have forked the flutter/plugins repository and created a pull request to contribute those changes back. I have filled the
January 28, 2019 at 09:41PM by Ian Evans
http://bit.ly/2FV9gTC
Flutter plugins pull request and CLA
Does anybody have any experience of making a contribution to the flutter/plugins repository and signing the CLA (Contributor Licence Agreement) on behalf of an employer? I have forked the flutter/plugins repository and created a pull request to contribute those changes back. I have filled the
January 28, 2019 at 09:41PM by Ian Evans
http://bit.ly/2FV9gTC
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.
New tweet from flutterio:
In case you missed @SFHTML5 last week, @flttry and @abraham gave Flutter talks for web developers!
Check out the recordings here 👉 https://t.co/Qpbrdh6Wqk pic.twitter.com/B8vEFnxlpO— Flutter (@flutterio) January 28, 2019
January 28, 2019 at 10:19PM
http://twitter.com/flutterio/status/1089996290514186243
In case you missed @SFHTML5 last week, @flttry and @abraham gave Flutter talks for web developers!
Check out the recordings here 👉 https://t.co/Qpbrdh6Wqk pic.twitter.com/B8vEFnxlpO— Flutter (@flutterio) January 28, 2019
January 28, 2019 at 10:19PM
http://twitter.com/flutterio/status/1089996290514186243
Twitter
San Francisco HTML5 (@sfhtml5) | Twitter
The latest Tweets from San Francisco HTML5 (@sfhtml5). First and largest HTML5 developer group in the world with 17.5k+ members. We feature top speakers and recorded monthly events. Organizer: @peterlubbers. San Francisco, CA
New post on /r/flutterdev subreddit:
Building A Custom Page Load Animation in Flutter – Nash – Medium
http://bit.ly/2WpmVHw
January 29, 2019 at 01:27AM by Nash0x7E2
http://bit.ly/2RRsrUy
Building A Custom Page Load Animation in Flutter – Nash – Medium
http://bit.ly/2WpmVHw
January 29, 2019 at 01:27AM by Nash0x7E2
http://bit.ly/2RRsrUy
Medium
Building A Custom Page Load Animation in Flutter
A few weeks ago I shared a gif on my Twitter showing a really simple yet cool animation for a fictional app. The animation in question…
New post on /r/flutterdev subreddit:
[X-post from /r/flutter] Having trouble understanding how the pieces of StatefulWidget fit together, confused on the language?
http://bit.ly/2S7NsK8
January 29, 2019 at 12:38AM by throwitway22334
http://bit.ly/2HEn0Ug
[X-post from /r/flutter] Having trouble understanding how the pieces of StatefulWidget fit together, confused on the language?
http://bit.ly/2S7NsK8
January 29, 2019 at 12:38AM by throwitway22334
http://bit.ly/2HEn0Ug
reddit
r/Flutter - Having trouble understanding how the pieces of StatefulWidget fit together, confused on the language?
3 votes and 3 comments so far on Reddit
New post on /r/flutterdev subreddit:
Very torn, React Native vs Flutter?
So I need to begin working on a mobile app ASAP. I'm hearing RN is a SHIT SHOW when it comes to bugs and things going wrong.With flutter can I access native features such as GPS without having to write any other code besides dart code?Also, can you give me some reasons as to why flutter is better than React Native?
January 29, 2019 at 02:41AM by MeHasAdhd
http://bit.ly/2CVtyZ0
Very torn, React Native vs Flutter?
So I need to begin working on a mobile app ASAP. I'm hearing RN is a SHIT SHOW when it comes to bugs and things going wrong.With flutter can I access native features such as GPS without having to write any other code besides dart code?Also, can you give me some reasons as to why flutter is better than React Native?
January 29, 2019 at 02:41AM by MeHasAdhd
http://bit.ly/2CVtyZ0
reddit
r/FlutterDev - Very torn, React Native vs Flutter?
1 vote and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter FlipCard
Flutter Tutorial - Flutter FlipCard https://youtu.be/6qezV0jGChk
January 29, 2019 at 03:35AM by whatsupcoders
http://bit.ly/2FVwid2
Flutter Tutorial - Flutter FlipCard
Flutter Tutorial - Flutter FlipCard https://youtu.be/6qezV0jGChk
January 29, 2019 at 03:35AM by whatsupcoders
http://bit.ly/2FVwid2
YouTube
Flutter Tutorial - Flutter FlipCard
Flutter Tutorial - Flutter FlipCard
In this video, you will see how to use Flutter Flip_Card Plugin in your Flutter application. I have also included a demo page illustrating Business Card Usecase using Flip_Card Plugin.
For more details about Flip_Card…
In this video, you will see how to use Flutter Flip_Card Plugin in your Flutter application. I have also included a demo page illustrating Business Card Usecase using Flip_Card Plugin.
For more details about Flip_Card…
New post on /r/flutterdev subreddit:
Need Help in implementing flutter widget for 360 image
I'm creating a flutter app which need to show 360 images. I am having difficulty while implementing this feature any suggestions or guidance will be helpful.
January 29, 2019 at 07:20AM by Vinod_Kumar_
http://bit.ly/2sOSmxi
Need Help in implementing flutter widget for 360 image
I'm creating a flutter app which need to show 360 images. I am having difficulty while implementing this feature any suggestions or guidance will be helpful.
January 29, 2019 at 07:20AM by Vinod_Kumar_
http://bit.ly/2sOSmxi
reddit
r/FlutterDev - Need Help in implementing flutter widget for 360 image
1 vote and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter firestrore
I have created a simple bar graph with hard coded values in app, but I want values fetch from firestore. Can anyone help me how to do it!!!!!!!!!!!
January 29, 2019 at 07:35AM by testuser...@gmail.com
http://bit.ly/2UnT4NF
Flutter firestrore
I have created a simple bar graph with hard coded values in app, but I want values fetch from firestore. Can anyone help me how to do it!!!!!!!!!!!
January 29, 2019 at 07:35AM by testuser...@gmail.com
http://bit.ly/2UnT4NF
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.
New post on Flutter Dev Google group:
Recommendations for a good charting library for Flutter
I am using charts_flutter but find it very limiting (lot of features are yet to be implemented - as an example, I found that labels on vertical bar charts aren't supported!) I also see fcharts but looks like it is still immature. What are most Flutter developers using today for charting?
January 29, 2019 at 07:55AM by Jagannathan Srinivasan
http://bit.ly/2CQx5YH
Recommendations for a good charting library for Flutter
I am using charts_flutter but find it very limiting (lot of features are yet to be implemented - as an example, I found that labels on vertical bar charts aren't supported!) I also see fcharts but looks like it is still immature. What are most Flutter developers using today for charting?
January 29, 2019 at 07:55AM by Jagannathan Srinivasan
http://bit.ly/2CQx5YH
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.
New post on /r/flutterdev subreddit:
Anyone used Pagination using FireBase FireStore?
I am running a problem with pagination when using cursors to get data. Any blog or tutorial talking about pagination?https://stackoverflow.com/questions/54408411/firestore-error-in-cursor-cursor-position-is-outside-the-range
January 29, 2019 at 08:19AM by PurusR
http://bit.ly/2RRR1EZ
Anyone used Pagination using FireBase FireStore?
I am running a problem with pagination when using cursors to get data. Any blog or tutorial talking about pagination?https://stackoverflow.com/questions/54408411/firestore-error-in-cursor-cursor-position-is-outside-the-range
January 29, 2019 at 08:19AM by PurusR
http://bit.ly/2RRR1EZ
Stack Overflow
FireStore Error in Cursor - cursor position is outside the range
I have a method to return some data from FireStore, which is used for pagination in my Flutter app.
static Future getAllItems({int count: 12, dynamic lastKey}) {
if (la...
static Future getAllItems({int count: 12, dynamic lastKey}) {
if (la...
New post on /r/flutterdev subreddit:
Fixing an App with a Depreciated Library and API - Weather App Part 5
https://www.youtube.com/watch?v=i4_VOKPnmLk
January 29, 2019 at 08:45AM by Purple_Pizzazz
http://bit.ly/2WqrGk1
Fixing an App with a Depreciated Library and API - Weather App Part 5
https://www.youtube.com/watch?v=i4_VOKPnmLk
January 29, 2019 at 08:45AM by Purple_Pizzazz
http://bit.ly/2WqrGk1
YouTube
Fixing an App with a Deprecated Library and API - Weather App Part 5
In this video, we update the Weather GPS app to use a new Geolocation Library and work properly on Dart 2.0
Github Repository: https://github.com/tensor-programming/Weather_Tutorial/tree/tensor-programming-patch-4
Feel free to donate:
Patreon: https://…
Github Repository: https://github.com/tensor-programming/Weather_Tutorial/tree/tensor-programming-patch-4
Feel free to donate:
Patreon: https://…