New post on /r/flutterdev subreddit:
MercadoPago integration
Hi everyone. I am kind of new to Flutter environment (I come from Android native and Java dev) but I am digging into Flutter and really excited to start developing a small app with it. My question aims to a payment platform we have in Latinamerica called MercadoPago. MercadoPago is widely spreaded and used to process all kind of payments (mostly in mobile/web applications). The problem is that this platform does not (yet?) provide a Flutter SDK/plugin.Do you think it is possible to integrate this platform for example through its web SDK as it would be developing with, for instance, React Native?This is the site to the devs page of MercadoPago: https://www.mercadopago.com.ar/developers//en/Thanks in advance.
July 30, 2019 at 02:17AM by sbd0223
https://ift.tt/2YdEL4M
MercadoPago integration
Hi everyone. I am kind of new to Flutter environment (I come from Android native and Java dev) but I am digging into Flutter and really excited to start developing a small app with it. My question aims to a payment platform we have in Latinamerica called MercadoPago. MercadoPago is widely spreaded and used to process all kind of payments (mostly in mobile/web applications). The problem is that this platform does not (yet?) provide a Flutter SDK/plugin.Do you think it is possible to integrate this platform for example through its web SDK as it would be developing with, for instance, React Native?This is the site to the devs page of MercadoPago: https://www.mercadopago.com.ar/developers//en/Thanks in advance.
July 30, 2019 at 02:17AM by sbd0223
https://ift.tt/2YdEL4M
New post on /r/flutterdev subreddit:
Showing graphs in Flutter
For my app I would like to display a line graph (time x amount in dollars) where the user can:Select a date on the graph to look at the amount of dollars at that date, as well as set a variable so more information about that date can be presented in another ListTile on the screenView x-axis and y-axis headers. For example, I want to write "Dates" at the footer and "Balance in dollars" along the y-axis.See a title for the graphIs there a library for graphs that supports these features?
July 30, 2019 at 05:27AM by ZealousidealRegion1
https://ift.tt/32ZYbsw
Showing graphs in Flutter
For my app I would like to display a line graph (time x amount in dollars) where the user can:Select a date on the graph to look at the amount of dollars at that date, as well as set a variable so more information about that date can be presented in another ListTile on the screenView x-axis and y-axis headers. For example, I want to write "Dates" at the footer and "Balance in dollars" along the y-axis.See a title for the graphIs there a library for graphs that supports these features?
July 30, 2019 at 05:27AM by ZealousidealRegion1
https://ift.tt/32ZYbsw
reddit
r/FlutterDev - Showing graphs in Flutter
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Check out this video if you're using Firebase Auth and want to display error messages returned from Firebase to the user
https://www.youtube.com/watch?v=bSUdYUw4Jjs
July 30, 2019 at 05:11AM by projectmind_guru
https://ift.tt/2KaVGex
Check out this video if you're using Firebase Auth and want to display error messages returned from Firebase to the user
https://www.youtube.com/watch?v=bSUdYUw4Jjs
July 30, 2019 at 05:11AM by projectmind_guru
https://ift.tt/2KaVGex
YouTube
(Ep 20) How to Add Form Validation and Alert User of Firebase Auth Error Messages in Flutter
This video will cover how to add custom form validation to our sign up and sign in forms. After that, we’ll explore how to display error messages returned from Firebase Auth to our end user.
Complete Code on GitHub: https://github.com/davefaliskie/trav…
Complete Code on GitHub: https://github.com/davefaliskie/trav…
New post on Flutter Dev Google group:
UI design limitations
Why flutter does not incorporated xml based layout design, it would be very good enhancement, one side just create layout and can visualize at other part of screen, it will improve productivity, and just render those layouts dynamically. Let me know if there is already such feature available.
July 30, 2019 at 07:05AM by Ravi Sharma
https://ift.tt/2Yzk8zj
UI design limitations
Why flutter does not incorporated xml based layout design, it would be very good enhancement, one side just create layout and can visualize at other part of screen, it will improve productivity, and just render those layouts dynamically. Let me know if there is already such feature available.
July 30, 2019 at 07:05AM by Ravi Sharma
https://ift.tt/2Yzk8zj
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:
Access a list in Flutter (Dart)
Hello,I have a json with a list inside..Example:
July 30, 2019 at 07:51AM by jfr_com
https://ift.tt/2YdNxQm
Access a list in Flutter (Dart)
Hello,I have a json with a list inside..Example:
Character( name: "John doe", imagePath: [ "assets/images/example.png", "assets/images/example2.png", ], description: "examaple" ),My question: How can I access those image Strings individually?I'm importing the file in another dart file.character.imagePath[0] (or 1) isn't working, but if I have just one normal String like the name then is character.imagePath working.I can't figure it out and I'm trying it for one day.. I'd really appreciate your help!!
July 30, 2019 at 07:51AM by jfr_com
https://ift.tt/2YdNxQm
reddit
r/FlutterDev - Access a list in Flutter (Dart)
0 votes and 6 comments so far on Reddit
New post on /r/flutterdev subreddit:
Pagination In Flutter Using Firebase Cloud Firestore
https://ift.tt/2OBKkW6
July 30, 2019 at 07:47AM by myvsparth
https://ift.tt/2YdiPqj
Pagination In Flutter Using Firebase Cloud Firestore
https://ift.tt/2OBKkW6
July 30, 2019 at 07:47AM by myvsparth
https://ift.tt/2YdiPqj
C-Sharpcorner
Pagination In Flutter Using Firebase Cloud Firestore
In this article, we are going to learn about pagination in Flutter using Firebase Cloud Firestore database.
New post on /r/flutterdev subreddit:
A Closer Look at the Provider Package
https://ift.tt/2YuyyN5
July 30, 2019 at 06:35PM by codinglatte
https://ift.tt/2K5ff99
A Closer Look at the Provider Package
https://ift.tt/2YuyyN5
July 30, 2019 at 06:35PM by codinglatte
https://ift.tt/2K5ff99
Medium
A Closer Look at the Provider Package
Plus a Brief History of State Management in Flutter
New post on /r/flutterdev subreddit:
Flutter App that dynamically generates apk/ipa based on a specific parameters
I want to write a flutter app so that I could generate dynamic apk/ipa using parameters passed on runtime. For example, I want to take the name of app and background color of the app in a web form and build apk/ipa based on the values. Can you help me point to the right resource to do it?
July 30, 2019 at 06:19PM by sajlgarg
https://ift.tt/2YsVj48
Flutter App that dynamically generates apk/ipa based on a specific parameters
I want to write a flutter app so that I could generate dynamic apk/ipa using parameters passed on runtime. For example, I want to take the name of app and background color of the app in a web form and build apk/ipa based on the values. Can you help me point to the right resource to do it?
July 30, 2019 at 06:19PM by sajlgarg
https://ift.tt/2YsVj48
reddit
r/FlutterDev - Flutter App that dynamically generates apk/ipa based on a specific parameters
0 votes and 4 comments so far on Reddit
New post on /r/flutterdev subreddit:
AnimatedPositioned (Flutter Widget of the Week)
https://www.youtube.com/watch?v=hC3s2YdtWt8&feature=youtu.be
July 30, 2019 at 07:04PM by MarkOSullivan
https://ift.tt/2GCrhEN
AnimatedPositioned (Flutter Widget of the Week)
https://www.youtube.com/watch?v=hC3s2YdtWt8&feature=youtu.be
July 30, 2019 at 07:04PM by MarkOSullivan
https://ift.tt/2GCrhEN
YouTube
AnimatedPositioned (Flutter Widget of the Week)
AnimatedPositioned automatically transitions the child's position over a given duration whenever the given position changes. Directional properties are implemented, allowing your widget to grow and shrink as part of the animation!
Learn more about AnimatedPositioned…
Learn more about AnimatedPositioned…
New post on Flutter Dev Google group:
google phone authentication?
I am trying to implement firebase authentication in flutter but I am stuck for days. can somebody help
July 30, 2019 at 08:31PM by Harshit Sachdeva
https://ift.tt/2MnJKZo
google phone authentication?
I am trying to implement firebase authentication in flutter but I am stuck for days. can somebody help
July 30, 2019 at 08:31PM by Harshit Sachdeva
https://ift.tt/2MnJKZo
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:
When is using a Mac necessary in Flutter iOS development?
I know for testing and releasing apps for iOS, a mac is absolutely necessary. What are other situations when you have to use a Mac?
July 30, 2019 at 09:12PM by TheRedGambit
https://ift.tt/31aRy57
When is using a Mac necessary in Flutter iOS development?
I know for testing and releasing apps for iOS, a mac is absolutely necessary. What are other situations when you have to use a Mac?
July 30, 2019 at 09:12PM by TheRedGambit
https://ift.tt/31aRy57
reddit
r/FlutterDev - When is using a Mac necessary in Flutter iOS development?
0 votes and 3 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter desktop concept
I have been working on go-flutter over the last year. (an unofficial project that brings Flutter to the desktop)Today while I was solving an issue, I came up with the idea to use the flutter AppBar widget as the draggable point for the window.I think the result looks pretty neat.go-flutter-desktop/examples/draggable_borderless
July 30, 2019 at 09:07PM by Drakirus
https://ift.tt/2LSsrAb
Flutter desktop concept
I have been working on go-flutter over the last year. (an unofficial project that brings Flutter to the desktop)Today while I was solving an issue, I came up with the idea to use the flutter AppBar widget as the draggable point for the window.I think the result looks pretty neat.go-flutter-desktop/examples/draggable_borderless
July 30, 2019 at 09:07PM by Drakirus
https://ift.tt/2LSsrAb
GitHub
examples/draggable_borderless at master · go-flutter-desktop/examples
Examples for go-flutter. Contribute to go-flutter-desktop/examples development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
How do I create a listview(pageView) to show the second card(Container) underneath the first card(Container)?
please read full question and codeplease click here
July 31, 2019 at 05:43AM by bisampath96
https://ift.tt/2Zn2rA2
How do I create a listview(pageView) to show the second card(Container) underneath the first card(Container)?
please read full question and codeplease click here
July 31, 2019 at 05:43AM by bisampath96
https://ift.tt/2Zn2rA2
New post on Flutter Dev Google group:
List View
Hi, I am Deepjyoti Baishya. From India, I have a error or questions i am not able to add list view in my Code please check my flutter Widgets ..... import 'package:flutter/material.dart'; class QuizPage extends StatefulWidget { final List questions; final Category category; const
July 31, 2019 at 07:49AM by Deepjyoti Baishya
https://ift.tt/2GD17Sq
List View
Hi, I am Deepjyoti Baishya. From India, I have a error or questions i am not able to add list view in my Code please check my flutter Widgets ..... import 'package:flutter/material.dart'; class QuizPage extends StatefulWidget { final List questions; final Category category; const
July 31, 2019 at 07:49AM by Deepjyoti Baishya
https://ift.tt/2GD17Sq
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:
Compile ML kit to desktop app(Linux)
Trying to use flutter for desktop apps(Linux). Any tips about how to compile firebase_ml_plugin for native apps? It seems info from https://ift.tt/2ZhLyXA is useless for that. Is it possible at least?
July 31, 2019 at 09:48AM by Georgii Dernovyi
https://ift.tt/2GEA613
Compile ML kit to desktop app(Linux)
Trying to use flutter for desktop apps(Linux). Any tips about how to compile firebase_ml_plugin for native apps? It seems info from https://ift.tt/2ZhLyXA is useless for that. Is it possible at least?
July 31, 2019 at 09:48AM by Georgii Dernovyi
https://ift.tt/2GEA613
GitHub
google/flutter-desktop-embedding
Examples of using, and testbed for, the in-development Flutter for Desktop - google/flutter-desktop-embedding
New post on /r/flutterdev subreddit:
Really excited to open source scale widget as Flutter package.
https://ift.tt/2ytQnRH
July 31, 2019 at 09:38AM by pinkeshdarji
https://ift.tt/31ck5Y5
Really excited to open source scale widget as Flutter package.
https://ift.tt/2ytQnRH
July 31, 2019 at 09:38AM by pinkeshdarji
https://ift.tt/31ck5Y5
Dart packages
flutter_scale | Flutter Package
A Flutter package allows you to easily integrate Scale widget.
New post on /r/flutterdev subreddit:
Building a Water Tracking App with Flare & Flutter
https://ift.tt/2Mu6VS6
July 31, 2019 at 09:09AM by Elixane
https://ift.tt/2OrkUKX
Building a Water Tracking App with Flare & Flutter
https://ift.tt/2Mu6VS6
July 31, 2019 at 09:09AM by Elixane
https://ift.tt/2OrkUKX
Medium
Building a Water Tracking App with Flare & Flutter
Diving into Flare’s Interactive Side
New post on /r/flutterdev subreddit:
Why are Flutter Apps are so fat?:(
If i build the same App with native android it will come around 1.9Mb, while Flutter is building it to 7.6Mb? Trying to optimise the size is not really helping. Is there a particular reason why this is so?The app i am talking about is here - https://github.com/barathmonk/taskoapp/tree/master/taskoappLive on Google Play - https://play.google.com/store/apps/details?id=androidmonks.com.example.tasko_app
July 31, 2019 at 08:54AM by Baradwaj
https://ift.tt/2MtU0zE
Why are Flutter Apps are so fat?:(
If i build the same App with native android it will come around 1.9Mb, while Flutter is building it to 7.6Mb? Trying to optimise the size is not really helping. Is there a particular reason why this is so?The app i am talking about is here - https://github.com/barathmonk/taskoapp/tree/master/taskoappLive on Google Play - https://play.google.com/store/apps/details?id=androidmonks.com.example.tasko_app
July 31, 2019 at 08:54AM by Baradwaj
https://ift.tt/2MtU0zE
GitHub
barathmonk/taskoapp
Contribute to barathmonk/taskoapp development by creating an account on GitHub.
New post on Flutter Dev Google group:
How to retrieve a list symbols and pass them to the main screen?
The code example includes a text box search for all quotes in all stock Exchanges. I would only like to retrieve and display SNAP,fb and AIG https://ift.tt/2GCHSsm Github Example https://ift.tt/2ZmS7rN Example https://github.com/bl
July 31, 2019 at 11:46AM by Thebest for yourbiz
https://ift.tt/2GCHSZo
How to retrieve a list symbols and pass them to the main screen?
The code example includes a text box search for all quotes in all stock Exchanges. I would only like to retrieve and display SNAP,fb and AIG https://ift.tt/2GCHSsm Github Example https://ift.tt/2ZmS7rN Example https://github.com/bl
July 31, 2019 at 11:46AM by Thebest for yourbiz
https://ift.tt/2GCHSZo
New post on Flutter Dev Google group:
How do I create a listview(pageView) to show the second card(Container) underneath the first card(Container)?
Hi, please help me https://ift.tt/317yW62
July 31, 2019 at 12:55PM by Bhanuka Isuru
https://ift.tt/2LQGyGo
How do I create a listview(pageView) to show the second card(Container) underneath the first card(Container)?
Hi, please help me https://ift.tt/317yW62
July 31, 2019 at 12:55PM by Bhanuka Isuru
https://ift.tt/2LQGyGo
Stack Overflow
How do I create a listview(pageView) to show the second card(Container) underneath the first card(Container)?
I need to create a listview or pageView to show the second card(Container) underneath the first card(Container). Too long time google I couldn't find a solution. I tried Swiper plugin here. It's go...