New post on /r/flutterdev subreddit:
What database should I used as backend proper SQL database?
How can I link proper SQL database like MySQL to flutter app and fetch insert update etc in the database?
August 04, 2019 at 03:58PM by jaybachre
https://ift.tt/2KoupFB
What database should I used as backend proper SQL database?
How can I link proper SQL database like MySQL to flutter app and fetch insert update etc in the database?
August 04, 2019 at 03:58PM by jaybachre
https://ift.tt/2KoupFB
reddit
r/FlutterDev - What database should I used as backend proper SQL database?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
koukicons | Flutter Package with 700+ color icons
https://ift.tt/2yEfnWM
August 04, 2019 at 07:05PM by Darkglow666
https://ift.tt/2YHbQkT
koukicons | Flutter Package with 700+ color icons
https://ift.tt/2yEfnWM
August 04, 2019 at 07:05PM by Darkglow666
https://ift.tt/2YHbQkT
Dart packages
koukicons | Flutter Package
Colorful Icons for your Flutter App, no more black and white icons
New post on /r/flutterdev subreddit:
Is it possible to use Kotlin/Java/Swift libraries in a flutter app?
I need access to functionality given by several libraries written in Kotlin/Swift. Is it possible to use that code within my app? If so, how?
August 04, 2019 at 08:21PM by notacooleagle
https://ift.tt/2yyG8fd
Is it possible to use Kotlin/Java/Swift libraries in a flutter app?
I need access to functionality given by several libraries written in Kotlin/Swift. Is it possible to use that code within my app? If so, how?
August 04, 2019 at 08:21PM by notacooleagle
https://ift.tt/2yyG8fd
reddit
r/FlutterDev - Is it possible to use Kotlin/Java/Swift libraries in a flutter app?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Having lots of difficulty understanding Dart code
I am doing Udacity's flutter course, but I am having a hard time understanding some of the syntax in the files.For example, in this file:
https://github.com/flutter/udacity-course/blob/master/course/04_navigation/solution_04_navigation/lib/unit.dartwhat is the difference between the const contructor initialization and the 'fromJSON' part at the end?
What are they doing?This 'unit' class(the link above), is being used in a ConverterRoute Class,
https://github.com/flutter/udacity-course/blob/master/course/04_navigation/solution_04_navigation/lib/converter_route.dartI cannot understand the first part of the code, inside the build method of the widget?How are they using 'return' inside a map function?Coming from C++, this feels very alien to me.
August 04, 2019 at 08:47PM by awesumsingh
https://ift.tt/2ZzmBqW
Having lots of difficulty understanding Dart code
I am doing Udacity's flutter course, but I am having a hard time understanding some of the syntax in the files.For example, in this file:
https://github.com/flutter/udacity-course/blob/master/course/04_navigation/solution_04_navigation/lib/unit.dartwhat is the difference between the const contructor initialization and the 'fromJSON' part at the end?
What are they doing?This 'unit' class(the link above), is being used in a ConverterRoute Class,
https://github.com/flutter/udacity-course/blob/master/course/04_navigation/solution_04_navigation/lib/converter_route.dartI cannot understand the first part of the code, inside the build method of the widget?How are they using 'return' inside a map function?Coming from C++, this feels very alien to me.
August 04, 2019 at 08:47PM by awesumsingh
https://ift.tt/2ZzmBqW
GitHub
udacity-course/unit.dart at master · flutter/udacity-course
Build native mobile apps with Flutter. Contribute to flutter/udacity-course development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Experiments with Dart FFI : A series of simple examples demonstrating how to call C libraries from Dart. Please note that the Dart FFI API is in active development and likely to change before release. This code is designed to work with Dart version 2.5.0-dev.1.0.
https://ift.tt/2Km4Nck
August 05, 2019 at 12:01AM by EngineerScientist
https://ift.tt/2M12df8
Experiments with Dart FFI : A series of simple examples demonstrating how to call C libraries from Dart. Please note that the Dart FFI API is in active development and likely to change before release. This code is designed to work with Dart version 2.5.0-dev.1.0.
https://ift.tt/2Km4Nck
August 05, 2019 at 12:01AM by EngineerScientist
https://ift.tt/2M12df8
GitHub
mjohnsullivan/ffi
Contribute to mjohnsullivan/ffi development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Animate a widget using a physics simulation (new cookbook recipe)
https://ift.tt/2KsytEu
August 04, 2019 at 11:48PM by Purple_Pizzazz
https://ift.tt/2KuCKYj
Animate a widget using a physics simulation (new cookbook recipe)
https://ift.tt/2KsytEu
August 04, 2019 at 11:48PM by Purple_Pizzazz
https://ift.tt/2KuCKYj
flutter.dev
Animate a widget using a physics simulation
Physics simulations can make app interactions feel realistic and interactive.For example, you might want to animate a widget to act as if it were attached toa spring or falling with gravity.This recipe demonstrates how to move a widget from a dragged point…
New post on Flutter Dev Google group:
Error running Gradle using Android studio
I can't access some library anyone with a solution of how to use that in CN
August 05, 2019 at 12:23AM by Nickname
https://ift.tt/31jQTOS
Error running Gradle using Android studio
I can't access some library anyone with a solution of how to use that in CN
August 05, 2019 at 12:23AM by Nickname
https://ift.tt/31jQTOS
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:
How can I avoid setState?
Hi at all! I have a StatefulWidget which represents my "first activity", just so we understand. I have a ListView, wrapped in a Container. When I scroll down the ListView, the Container's background color changes. I managed to do this effect by settings the background color as a variable, update it through a ScrollListener attached to the ListView, then finally call setState with the new background color value. The problem is that this kills the framerate of my app, since widget tree is going to be recalculated and redrawn every time the scroll changes! There is some trick I can do to avoid this? I tried searching to the death, but I haven't found my solution yet.
August 05, 2019 at 01:26AM by FonzTech
https://ift.tt/2YkWMOG
How can I avoid setState?
Hi at all! I have a StatefulWidget which represents my "first activity", just so we understand. I have a ListView, wrapped in a Container. When I scroll down the ListView, the Container's background color changes. I managed to do this effect by settings the background color as a variable, update it through a ScrollListener attached to the ListView, then finally call setState with the new background color value. The problem is that this kills the framerate of my app, since widget tree is going to be recalculated and redrawn every time the scroll changes! There is some trick I can do to avoid this? I tried searching to the death, but I haven't found my solution yet.
August 05, 2019 at 01:26AM by FonzTech
https://ift.tt/2YkWMOG
reddit
r/FlutterDev - How can I avoid setState?
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Can I develop Flutter apps only using IntelliJ?
Hello everyone,So over the past few weeks I’ve been deciding whether to learn React Native or Flutter, and I ultimately chose Flutter. As for the IDE, I see a lot of options and I’m not sure which one to pick.The top 3 options I’ve seen are VSCode, Android Studio, and IntelliJ. I’m a big fan of JetBrains tools, and I’m wondering whether it’s possible to develop solely using IntelliJ. I was doing some research and apparently you can use IntelliJ, but Android Studio is almost a requirement. However, the threads I saw were a few years old so I’m wondering whether things are different now, and if I can use IntelliJ for simulating my code, and any other necessary things for developing using Flutter.Any help or advice would be really appreciated. I’m super excited to get started with Flutter!
August 05, 2019 at 05:04AM by cervinakuy
https://ift.tt/2Ym1WtP
Can I develop Flutter apps only using IntelliJ?
Hello everyone,So over the past few weeks I’ve been deciding whether to learn React Native or Flutter, and I ultimately chose Flutter. As for the IDE, I see a lot of options and I’m not sure which one to pick.The top 3 options I’ve seen are VSCode, Android Studio, and IntelliJ. I’m a big fan of JetBrains tools, and I’m wondering whether it’s possible to develop solely using IntelliJ. I was doing some research and apparently you can use IntelliJ, but Android Studio is almost a requirement. However, the threads I saw were a few years old so I’m wondering whether things are different now, and if I can use IntelliJ for simulating my code, and any other necessary things for developing using Flutter.Any help or advice would be really appreciated. I’m super excited to get started with Flutter!
August 05, 2019 at 05:04AM by cervinakuy
https://ift.tt/2Ym1WtP
reddit
r/FlutterDev - Can I develop Flutter apps only using IntelliJ?
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
How to display a list of videos from device storage using ListView & video_player (plugin)?
Hi FlutterDevs,I am building an app that requires me to list videos from the device storage in a list view. I tried using ListView & video_player within each item of the ListView, but the app kept crashing. Could you please point me to any resource to understand and implement this? Thank you.
August 05, 2019 at 06:25AM by onstash
https://ift.tt/2yBZKPl
How to display a list of videos from device storage using ListView & video_player (plugin)?
Hi FlutterDevs,I am building an app that requires me to list videos from the device storage in a list view. I tried using ListView & video_player within each item of the ListView, but the app kept crashing. Could you please point me to any resource to understand and implement this? Thank you.
August 05, 2019 at 06:25AM by onstash
https://ift.tt/2yBZKPl
reddit
r/FlutterDev - How to display a list of videos from device storage using ListView & video_player (plugin)?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
flutter_urbanclap_demo: A sample flutter application to showcase Urban Clap UI demo | Urban lifestyle services app UI
https://ift.tt/2XMpQt6
August 05, 2019 at 08:04AM by Flutter-Devs
https://ift.tt/2GMYc9R
flutter_urbanclap_demo: A sample flutter application to showcase Urban Clap UI demo | Urban lifestyle services app UI
https://ift.tt/2XMpQt6
August 05, 2019 at 08:04AM by Flutter-Devs
https://ift.tt/2GMYc9R
GitHub
GitHub - flutter-devs/flutter_home_services_demo: A sample flutter application to showcase home services UI demo.
A sample flutter application to showcase home services UI demo. - GitHub - flutter-devs/flutter_home_services_demo: A sample flutter application to showcase home services UI demo.
New post on /r/flutterdev subreddit:
See How To Structure & Retrieve Cloud Firestore Data With User’s Unique Id (UID)
https://youtu.be/1NfW5wa2GJc
August 05, 2019 at 07:51AM by projectmind_guru
https://ift.tt/2YHZfhl
See How To Structure & Retrieve Cloud Firestore Data With User’s Unique Id (UID)
https://youtu.be/1NfW5wa2GJc
August 05, 2019 at 07:51AM by projectmind_guru
https://ift.tt/2YHZfhl
YouTube
(Ep 23) How To Structure & Retrieve Cloud Firestore Data With User’s Unique Id (UID)
Now that we have authentication set up, we can restructure our Firebase Cloud Firestore database to use each users unique Id (UID). This means if a user creates a new trip we will know they created it, and then only allow them to access it. By the end of…
New post on /r/flutterdev subreddit:
[From Android dev] Flutter looks good, but is painful. Here are my frustrations with it.
https://ift.tt/2YHvVaL
August 05, 2019 at 09:10AM by EngineerScientist
https://ift.tt/33g3HHV
[From Android dev] Flutter looks good, but is painful. Here are my frustrations with it.
https://ift.tt/2YHvVaL
August 05, 2019 at 09:10AM by EngineerScientist
https://ift.tt/33g3HHV
Medium
[From Android dev] Flutter looks good, but is painful. Here are my frustrations with it.
Disclaimer: I’m an Android developer, I have ~1000 stars in GitHub from projects using Kotlin and I love Kotlin. I also hate both Android…
New post on Flutter Dev Google group:
Test the Android app
I used flutter and webview to call html, but when I open this page, then click on the input box, the app closes directly, or jumps the keyboard.
August 05, 2019 at 09:45AM by heyi fang
https://ift.tt/2MFlGl9
Test the Android app
I used flutter and webview to call html, but when I open this page, then click on the input box, the app closes directly, or jumps the keyboard.
August 05, 2019 at 09:45AM by heyi fang
https://ift.tt/2MFlGl9
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:
Speed Dial Fab with Flutter (Multiple Floating Action Buttons)
https://youtu.be/1FmATI4rOBc
August 05, 2019 at 10:54AM by Paulhal
https://ift.tt/2T6sOIw
Speed Dial Fab with Flutter (Multiple Floating Action Buttons)
https://youtu.be/1FmATI4rOBc
August 05, 2019 at 10:54AM by Paulhal
https://ift.tt/2T6sOIw
YouTube
Speed Dial Fab with Flutter (Multiple Floating Action Buttons)
Become a Patreon! Your continued support enables me to continue creating free content: https://www.patreon.com/PaulHalliday
Check out more free tutorials at https://developer.school
Developer School Mailing List:
http://bit.ly/DeveloperSchoolMailingList…
Check out more free tutorials at https://developer.school
Developer School Mailing List:
http://bit.ly/DeveloperSchoolMailingList…
New post on /r/flutterdev subreddit:
(Beginner) Few interrogations for our first Flutter app
(English is not my native language, please excuse my mistakes) I hope this post will also help other beginners overwhelmed by all the stuffs we need to know for creating a fully fledged app.I'm currently learning Flutter + Firestore to create my very first application with a friend. We already have prepared the UX/UI with a prototype and a graphical chart, and the app should be deploy for early 2020.The project is 2 months old and well established but now it's time to get our hands dirty and create the actual app.A little bit of background : We've started programming 4 years ago with Python, then 2 years of C and last year we've done 1 year of C++.I do understand OOP and design pattern, but concept like state management / authentification connected to a database are completely new to us.We want to start our app with a solid architecture. Please feel free to correct me, I'll try to resume everything we need and what we know so far. If you have any valuable ressources or tricks/tips for us, please comment this post.Our app is using a map as the mainpage, and all the connected users are visible on it. Simply put, each user can create a pin to a given location and a description. Nothing fancy (location, date, user name and profile pic + description). Each user login (email or Google or Facebook) and have a profile page with basics informations. The last page is a settings page. The rest of the pages are sign in, help, legal mentions and so on.Choice of map service : Google Maps or Mapbox. - Mapbox is cheaper than Google Maps, and highly customizable, but we have no idea how to show users/pins on it and sync them with Firestore. - Google Maps is easier to implement with Firestore (there is a very good tutorial to use both) but the Flutter package is still beta, and we might be limited for customization. We don't really know which one to use for now, but if I'm able to use Mapbox and Firestore together, the first choice is better for our project. Widgets will be visible on top of the map, using Stack.From what I've read, Provider package + ChangeNotifier is a popular choice for state management so we'll use them. The Flutter doc explains that we should use Statefull widget for UI state (button pressed ect), and a real state management system for authentification / data shared across the app.Firestore is a appealing choice, because it's much easier to use than a proper RESTful API built with node.js / mangoDB for example (which is scary for us !). Plus since it's own by Google, implentation with Flutter should be easy. There is also a lot of tutorials w/ Flutter, so this is our choice now.After browsing recommended Flutter projects on GitHub and reading Medium articles, most of the projects use two mains folders in /lib which are /screens (mappage,profilepage,settings,loginpage) And /widgets (buttons, alert menus ...) There is also /services for all the logic to connect with the database. I don't know if we need a folder for state since Provider+Notifier is directly implemented within the widgets.We still have a lot to learn and to practice, but our biggest obstacles for now are authentification and syncing users on the map; It's still very blurry in our heads.
August 05, 2019 at 11:25AM by Kadarach
https://ift.tt/2yDcDJ5
(Beginner) Few interrogations for our first Flutter app
(English is not my native language, please excuse my mistakes) I hope this post will also help other beginners overwhelmed by all the stuffs we need to know for creating a fully fledged app.I'm currently learning Flutter + Firestore to create my very first application with a friend. We already have prepared the UX/UI with a prototype and a graphical chart, and the app should be deploy for early 2020.The project is 2 months old and well established but now it's time to get our hands dirty and create the actual app.A little bit of background : We've started programming 4 years ago with Python, then 2 years of C and last year we've done 1 year of C++.I do understand OOP and design pattern, but concept like state management / authentification connected to a database are completely new to us.We want to start our app with a solid architecture. Please feel free to correct me, I'll try to resume everything we need and what we know so far. If you have any valuable ressources or tricks/tips for us, please comment this post.Our app is using a map as the mainpage, and all the connected users are visible on it. Simply put, each user can create a pin to a given location and a description. Nothing fancy (location, date, user name and profile pic + description). Each user login (email or Google or Facebook) and have a profile page with basics informations. The last page is a settings page. The rest of the pages are sign in, help, legal mentions and so on.Choice of map service : Google Maps or Mapbox. - Mapbox is cheaper than Google Maps, and highly customizable, but we have no idea how to show users/pins on it and sync them with Firestore. - Google Maps is easier to implement with Firestore (there is a very good tutorial to use both) but the Flutter package is still beta, and we might be limited for customization. We don't really know which one to use for now, but if I'm able to use Mapbox and Firestore together, the first choice is better for our project. Widgets will be visible on top of the map, using Stack.From what I've read, Provider package + ChangeNotifier is a popular choice for state management so we'll use them. The Flutter doc explains that we should use Statefull widget for UI state (button pressed ect), and a real state management system for authentification / data shared across the app.Firestore is a appealing choice, because it's much easier to use than a proper RESTful API built with node.js / mangoDB for example (which is scary for us !). Plus since it's own by Google, implentation with Flutter should be easy. There is also a lot of tutorials w/ Flutter, so this is our choice now.After browsing recommended Flutter projects on GitHub and reading Medium articles, most of the projects use two mains folders in /lib which are /screens (mappage,profilepage,settings,loginpage) And /widgets (buttons, alert menus ...) There is also /services for all the logic to connect with the database. I don't know if we need a folder for state since Provider+Notifier is directly implemented within the widgets.We still have a lot to learn and to practice, but our biggest obstacles for now are authentification and syncing users on the map; It's still very blurry in our heads.
August 05, 2019 at 11:25AM by Kadarach
https://ift.tt/2yDcDJ5
reddit
r/FlutterDev - (Beginner) Few interrogations for our first Flutter app
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Firestore Todos with “flutter_bloc”
https://ift.tt/2YEAjre
August 05, 2019 at 12:18PM by EngineerScientist
https://ift.tt/2GOWmoT
Firestore Todos with “flutter_bloc”
https://ift.tt/2YEAjre
August 05, 2019 at 12:18PM by EngineerScientist
https://ift.tt/2GOWmoT
Medium
Firestore Todos with “flutter_bloc”
In this tutorial, we’re going to build a reactive Todos App which hooks up to Firestore and syncs across multiple devices in real-time.
New post on /r/flutterdev subreddit:
New Chart/Graph for Flutter
https://ift.tt/2ZmpZ8r
August 05, 2019 at 01:12PM by prabakarinfo
https://ift.tt/2yBzRzr
New Chart/Graph for Flutter
https://ift.tt/2ZmpZ8r
August 05, 2019 at 01:12PM by prabakarinfo
https://ift.tt/2yBzRzr
Syncfusion Blogs
Introducing Data Visualization Widgets for Flutter | Syncfusion Blogs
Syncfusion Flutter Charts is a data visualization library written natively in Dart for creating beautiful & high-performance Cartesian and circular charts.
New post on Flutter Dev Google group:
Please can anybody help me on this
Please help me, Its been a month since dealing with the issue https://ift.tt/2GJxK0N
August 05, 2019 at 01:57PM by mahantappa b k
https://ift.tt/33eMBd4
Please can anybody help me on this
Please help me, Its been a month since dealing with the issue https://ift.tt/2GJxK0N
August 05, 2019 at 01:57PM by mahantappa b k
https://ift.tt/33eMBd4
New post on /r/flutterdev subreddit:
What are the blogs you follow?
Hey everybody!
Are there any other dev blogs (besides Medium) you often visit or find useful?
August 05, 2019 at 02:06PM by Gigatronbot
https://ift.tt/2Kq1VLG
What are the blogs you follow?
Hey everybody!
Are there any other dev blogs (besides Medium) you often visit or find useful?
August 05, 2019 at 02:06PM by Gigatronbot
https://ift.tt/2Kq1VLG
reddit
r/FlutterDev - What are the blogs you follow?
0 votes and 0 comments so far on Reddit