New post on /r/flutterdev subreddit:
Firebase Dynamic Links don't open the app
I tried implementing firebase_dynamic_links into my Flutter project, but as soon as I click on the link on for example Whatsapp, it just links me to the Play Store where my app does not yet exist. Does anyone know why the url doesn't take me to my app on Android?
June 10, 2019 at 01:03PM by alex-lushiku
http://bit.ly/2MBwNgl
Firebase Dynamic Links don't open the app
I tried implementing firebase_dynamic_links into my Flutter project, but as soon as I click on the link on for example Whatsapp, it just links me to the Play Store where my app does not yet exist. Does anyone know why the url doesn't take me to my app on Android?
DynamicLinkParameters parameters = DynamicLinkParameters( uriPrefix: 'https://globalpool.page.link', link: Uri.parse('http://alexlushiku.com/?pool=${widget.id}'), androidParameters: AndroidParameters( packageName: 'com.globalpool.globalpool', minimumVersion: 25, // TODO: Change minimum version ), socialMetaTagParameters: SocialMetaTagParameters( title: 'Pool Invite', description: 'Invite to ${widget.name}', imageUrl: Uri.parse('https://static1.squarespace.com/static/5b551972697a98cf2ceef4b1/t/5b5fac0070a6ad76751cfe42/1532996631929/InviteLogo.png') ), ); await parameters.buildShortLink().then((uri) { print('Short: ${uri.shortUrl}'); Share.share(uri.shortUrl.toString()); });
June 10, 2019 at 01:03PM by alex-lushiku
http://bit.ly/2MBwNgl
reddit
r/FlutterDev - Firebase Dynamic Links don't open the app
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter for embedded devices
I think it will be revolution in IOT development if it is possible to build Flutter app for embedded devices such Arduino compatible boards, Cortex/ARM boards e.t.c I mean not to build a desktop app for linux/windows or to run android on a single-board computer specially for this purpose but to
June 10, 2019 at 01:39PM by Миха Миха
http://bit.ly/2wKkGTt
Flutter for embedded devices
I think it will be revolution in IOT development if it is possible to build Flutter app for embedded devices such Arduino compatible boards, Cortex/ARM boards e.t.c I mean not to build a desktop app for linux/windows or to run android on a single-board computer specially for this purpose but to
June 10, 2019 at 01:39PM by Миха Миха
http://bit.ly/2wKkGTt
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:
First Android Application
Hello!I was just wondering if it is possible for me to create a Flutter app as a complete begginer (never learned anything about iOS/Android application development, just finishing my first year of CS, decent C++ programming skills).I know that I am capable of the task at hand but the problem is that the application's deadline is in 2 and a half months. I know that I can make it but I'm just asking if it is possible for a complete begginer to make it in time because I still have an option to have a teammate with me, with who I could make a team ( the downside of this is that the budget for the development will be reduced as one more person will need to be paid )The application will be pretty basic, the UI could be compared to something like Tinder, with 4 - 7 individual pages. A database will be needed for user logins.I'm wondering as well what goes into the production ( tasks that are needed for completion, or common problems, headaches that are normally encountered while development )The more information the better!Thanks in advance!illia
June 10, 2019 at 01:37PM by illiaReddit
http://bit.ly/2XBlbet
First Android Application
Hello!I was just wondering if it is possible for me to create a Flutter app as a complete begginer (never learned anything about iOS/Android application development, just finishing my first year of CS, decent C++ programming skills).I know that I am capable of the task at hand but the problem is that the application's deadline is in 2 and a half months. I know that I can make it but I'm just asking if it is possible for a complete begginer to make it in time because I still have an option to have a teammate with me, with who I could make a team ( the downside of this is that the budget for the development will be reduced as one more person will need to be paid )The application will be pretty basic, the UI could be compared to something like Tinder, with 4 - 7 individual pages. A database will be needed for user logins.I'm wondering as well what goes into the production ( tasks that are needed for completion, or common problems, headaches that are normally encountered while development )The more information the better!Thanks in advance!illia
June 10, 2019 at 01:37PM by illiaReddit
http://bit.ly/2XBlbet
reddit
r/FlutterDev - First Android Application
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Circle Progress with Animation
https://youtu.be/3J5FR2H5FDk
June 10, 2019 at 04:56PM by ishanfx
http://bit.ly/2XAtU0k
Flutter Circle Progress with Animation
https://youtu.be/3J5FR2H5FDk
June 10, 2019 at 04:56PM by ishanfx
http://bit.ly/2XAtU0k
YouTube
Flutter Circular Percent Indicator - Step by Step
Make Flutter Circular Percent Indicator from scratch and Adding a nice animation. In this tutorial you will learn also how to use customPainter and use Forwa...
New post on /r/flutterdev subreddit:
Full-Text Search in Flutter with Firestore and Algolia
http://bit.ly/2XBHrVB
June 10, 2019 at 04:44PM by samarthagarwal
http://bit.ly/2wMbcae
Full-Text Search in Flutter with Firestore and Algolia
http://bit.ly/2XBHrVB
June 10, 2019 at 04:44PM by samarthagarwal
http://bit.ly/2wMbcae
Medium
Full-Text Search in Flutter with Firestore and Algolia
Searching is one of the most important features of any mobile application that deals with data. It is almost inevitable to not have a…
New post on /r/flutterdev subreddit:
Preferred state management architecture
I have been working with flutter for few weeks but got confused to choose architecture as standard., which one is the best and preferred state management ways?BlocProviderMobxRedux
June 10, 2019 at 04:22PM by sadmansamee
http://bit.ly/2wN8RvT
Preferred state management architecture
I have been working with flutter for few weeks but got confused to choose architecture as standard., which one is the best and preferred state management ways?BlocProviderMobxRedux
June 10, 2019 at 04:22PM by sadmansamee
http://bit.ly/2wN8RvT
reddit
r/FlutterDev - Preferred state management architecture
0 votes and 4 comments so far on Reddit
New post on /r/flutterdev subreddit:
Correct way to store favourites when using Firestore?
Hey everyone,I'm hoping someone can point me in the right direction here. I'm building an app in which a user can store favourites that are linked to Firestore, ie:Collection: users/{user.uid}/favourites/{list of favourites}Should these favourites also be stored locally as well as on Firestore to prevent querying the database every time a user opens a page that they have favourited? For example:User favourites a pageReference to that page stored on Firestore and locally (SQLFlite or such)When opening that page, the local database is read and page shows as favourited (thus being able to display "Favourited" icon immediately without first having to fetch that data from FirestoreAm I on the right track, or am I missing something obvious here?Thanks in advance!!
June 10, 2019 at 04:12PM by guit4eva
http://bit.ly/2XJsvox
Correct way to store favourites when using Firestore?
Hey everyone,I'm hoping someone can point me in the right direction here. I'm building an app in which a user can store favourites that are linked to Firestore, ie:Collection: users/{user.uid}/favourites/{list of favourites}Should these favourites also be stored locally as well as on Firestore to prevent querying the database every time a user opens a page that they have favourited? For example:User favourites a pageReference to that page stored on Firestore and locally (SQLFlite or such)When opening that page, the local database is read and page shows as favourited (thus being able to display "Favourited" icon immediately without first having to fetch that data from FirestoreAm I on the right track, or am I missing something obvious here?Thanks in advance!!
June 10, 2019 at 04:12PM by guit4eva
http://bit.ly/2XJsvox
reddit
r/FlutterDev - Correct way to store favourites when using Firestore?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Responsive Apps with Flutter
Hello,I've been building an app with the Flutter SDK for about 3 weeks now and have perfected the UI for iPhone X. Now I'm thinking about adjusting the UI for all other devices and have come to notice that tutorials, docs, information, for learning how to build responsive apps that work on all devices without looking stupid is just not there, unless I'm garbage at google searching. I really hope this is the case because I've been trying to figure it out for about 24 hours now and have just learned about MediaQuery, LayoutBuilder, Flexible and Expanded. Knowing all that is great, but there are so many specific scenarios where the size of an Icon must change or a whole decoration of a Container Widget must change due to the smaller phone size of an old Android and I've got no idea how to account for this.If anyone knows of any resources I can use, read, watch, ANYTHING, please let me know.Thanks.
June 10, 2019 at 07:11PM by dappertiara
http://bit.ly/2R61RUi
Responsive Apps with Flutter
Hello,I've been building an app with the Flutter SDK for about 3 weeks now and have perfected the UI for iPhone X. Now I'm thinking about adjusting the UI for all other devices and have come to notice that tutorials, docs, information, for learning how to build responsive apps that work on all devices without looking stupid is just not there, unless I'm garbage at google searching. I really hope this is the case because I've been trying to figure it out for about 24 hours now and have just learned about MediaQuery, LayoutBuilder, Flexible and Expanded. Knowing all that is great, but there are so many specific scenarios where the size of an Icon must change or a whole decoration of a Container Widget must change due to the smaller phone size of an old Android and I've got no idea how to account for this.If anyone knows of any resources I can use, read, watch, ANYTHING, please let me know.Thanks.
June 10, 2019 at 07:11PM by dappertiara
http://bit.ly/2R61RUi
reddit
r/FlutterDev - Responsive Apps with Flutter
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
E' PEDOFILO ED ASSASSINO: PAOLO BARRAI! MA CHI' E' DAVVERO QUESTO PEDERASTA OMICIDA, NATO A MILANO I
E' PEDOFILO ED ASSASSINO: PAOLO BARRAI! MA CHI' E' DAVVERO QUESTO PEDERASTA OMICIDA, NATO A MILANO IL 28.6.65, CHIAMANTESI PAOLO BARRAI? PER INIZIARE: E' STATO IL REGISTA DELLA CRIMINALISSIMA OPERAZIONE "NDRANGHETA IN EIDOO"! http://bit.ly/2R3ba76
June 10, 2019 at 07:38PM by RICICLASOLDIMAFIOSI PAOLO BARRAI ORDINATANTIOMICIDI
http://bit.ly/2X6LWKU
E' PEDOFILO ED ASSASSINO: PAOLO BARRAI! MA CHI' E' DAVVERO QUESTO PEDERASTA OMICIDA, NATO A MILANO I
E' PEDOFILO ED ASSASSINO: PAOLO BARRAI! MA CHI' E' DAVVERO QUESTO PEDERASTA OMICIDA, NATO A MILANO IL 28.6.65, CHIAMANTESI PAOLO BARRAI? PER INIZIARE: E' STATO IL REGISTA DELLA CRIMINALISSIMA OPERAZIONE "NDRANGHETA IN EIDOO"! http://bit.ly/2R3ba76
June 10, 2019 at 07:38PM by RICICLASOLDIMAFIOSI PAOLO BARRAI ORDINATANTIOMICIDI
http://bit.ly/2X6LWKU
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:
Bezier Chart: A beautiful bezier line chart widget for flutter that is highly interactive and configurable.
http://bit.ly/2QNz46v
June 10, 2019 at 07:46PM by EngineerScientist
http://bit.ly/2WsDocH
Bezier Chart: A beautiful bezier line chart widget for flutter that is highly interactive and configurable.
http://bit.ly/2QNz46v
June 10, 2019 at 07:46PM by EngineerScientist
http://bit.ly/2WsDocH
Dart packages
bezier_chart | Flutter Package
A beautiful bezier line chart widget for flutter that is highly interactive and configurable.
New post on /r/flutterdev subreddit:
FlutteFragment and MethodChannel
I have an existing app which I want to migrate over to flutter. I created a FlutterFragment and am now trying to figure out how I can call a native Android function in the main activity ( Java code )I saw a lot of samples which all utilize FlutterActuvity in one way or another however nothing on how a fragment could be used to communicate between Android native and flutter/dart code.Any pointers would be great.Thanks in advance
June 10, 2019 at 07:40PM by VarolOkan
http://bit.ly/2WCI1pt
FlutteFragment and MethodChannel
I have an existing app which I want to migrate over to flutter. I created a FlutterFragment and am now trying to figure out how I can call a native Android function in the main activity ( Java code )I saw a lot of samples which all utilize FlutterActuvity in one way or another however nothing on how a fragment could be used to communicate between Android native and flutter/dart code.Any pointers would be great.Thanks in advance
June 10, 2019 at 07:40PM by VarolOkan
http://bit.ly/2WCI1pt
reddit
r/FlutterDev - FlutteFragment and MethodChannel
0 votes and 0 comments so far on Reddit
New tweet from FlutterDev:
InheritedWidget! A way to share state between widgets without passing parameters everywhere.
Most state management systems actually use InheritedWidget behind the scenes to do their magic! 🤯✨
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/Ret2n2zKtq— Flutter (@FlutterDev) June 10, 2019
June 10, 2019 at 08:11PM
http://twitter.com/FlutterDev/status/1138146597911445504
InheritedWidget! A way to share state between widgets without passing parameters everywhere.
Most state management systems actually use InheritedWidget behind the scenes to do their magic! 🤯✨
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/Ret2n2zKtq— Flutter (@FlutterDev) June 10, 2019
June 10, 2019 at 08:11PM
http://twitter.com/FlutterDev/status/1138146597911445504
Twitter
#widgetoftheweek hashtag on Twitter
15h ago @FlutterDev tweeted: "✏️ Writing your own button controls from.." - read what others are saying and join the conversation.
New post on Flutter Dev Google group:
Image slow to load.. for imagebackground
Hello to all ! I have an issue that i don't know how to solve it. I have a SplashScreen and then after, it redirects to the second page. The seconde page has Container with an image in background. But the problem is, when the second page appears, we see a white background for less than a second
June 10, 2019 at 08:27PM by Pascal Fournier
http://bit.ly/2MEFNBB
Image slow to load.. for imagebackground
Hello to all ! I have an issue that i don't know how to solve it. I have a SplashScreen and then after, it redirects to the second page. The seconde page has Container with an image in background. But the problem is, when the second page appears, we see a white background for less than a second
June 10, 2019 at 08:27PM by Pascal Fournier
http://bit.ly/2MEFNBB
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:
Flutter: Creating Custom Reusable Widgets
https://www.youtube.com/watch?v=CyKFCLtOb_s
June 10, 2019 at 08:03PM by Paulhal
http://bit.ly/2wHLELB
Flutter: Creating Custom Reusable Widgets
https://www.youtube.com/watch?v=CyKFCLtOb_s
June 10, 2019 at 08:03PM by Paulhal
http://bit.ly/2wHLELB
YouTube
Flutter: Creating Custom Reusable Widgets
Become a Patreon! Your continued support enables me to continue creating free content: https://www.patreon.com/PaulHalliday
Flutter: Creating Custom Reusable Widgets
Check out more free tutorials at https://developer.school
Developer School Mailing List:…
Flutter: Creating Custom Reusable Widgets
Check out more free tutorials at https://developer.school
Developer School Mailing List:…
New post on /r/flutterdev subreddit:
Releasing a flutter web project
I've fnished building my web project,
June 10, 2019 at 09:41PM by Week0_
http://bit.ly/2I8znGz
Releasing a flutter web project
I've fnished building my web project,
June 10, 2019 at 09:41PM by Week0_
http://bit.ly/2I8znGz
reddit
r/FlutterDev - Releasing a flutter web project
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
The use of Cloud Functions Vs FireStore + StreamBuilders for data in a flutter application.
Hi I am currently creating an app for a client that uses a lot of basic data such as venue, menu, reviews etc. All of this information is subject to change and there are many venues. Seen as this information does not need to be updated instantly with live data , is there any need for a steam builder? StreamBuilders seem to require ListViews and ListTiles which are clunky to deal with and often crash my galaxy which seems unreliable?My question to the community is have you used cloud functions for data retrieval before in a flutter application? If you have would you recommend it in this instance? Will it cost more or less as the app scales?I've used Azure Cloud functions with an angular app before and I found it to be a great solution to basic reads and writes.It also makes more sense to me to add an extra data layer so the App is less reliant on the StreamBuilders .This idea seems great in my head but I'm afraid I'm a little naive here as i am not long developing outside of school work.Apologies if this breaks rule 3 but I don't know where to ask this question ! Thanks!
June 10, 2019 at 09:34PM by Aidandots1
http://bit.ly/2Iy69jc
The use of Cloud Functions Vs FireStore + StreamBuilders for data in a flutter application.
Hi I am currently creating an app for a client that uses a lot of basic data such as venue, menu, reviews etc. All of this information is subject to change and there are many venues. Seen as this information does not need to be updated instantly with live data , is there any need for a steam builder? StreamBuilders seem to require ListViews and ListTiles which are clunky to deal with and often crash my galaxy which seems unreliable?My question to the community is have you used cloud functions for data retrieval before in a flutter application? If you have would you recommend it in this instance? Will it cost more or less as the app scales?I've used Azure Cloud functions with an angular app before and I found it to be a great solution to basic reads and writes.It also makes more sense to me to add an extra data layer so the App is less reliant on the StreamBuilders .This idea seems great in my head but I'm afraid I'm a little naive here as i am not long developing outside of school work.Apologies if this breaks rule 3 but I don't know where to ask this question ! Thanks!
June 10, 2019 at 09:34PM by Aidandots1
http://bit.ly/2Iy69jc
reddit
r/FlutterDev - The use of Cloud Functions Vs FireStore + StreamBuilders for data in a flutter application.
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Your Own Image Picker With Flutter Channels
http://bit.ly/2ZdY3D6
June 10, 2019 at 10:18PM by EngineerScientist
http://bit.ly/2WxddXf
Your Own Image Picker With Flutter Channels
http://bit.ly/2ZdY3D6
June 10, 2019 at 10:18PM by EngineerScientist
http://bit.ly/2WxddXf
raywenderlich.com
Your Own Image Picker With Flutter Channels
In this tutorial you will learn how to use Flutter Channels to communicate with platform code and create an image picker for both Android and iOS.
New post on /r/flutterdev subreddit:
Flutter, now with AndroidX
http://bit.ly/2wNlozo
June 11, 2019 at 12:31AM by athornz
http://bit.ly/2XIrLQw
Flutter, now with AndroidX
http://bit.ly/2wNlozo
June 11, 2019 at 12:31AM by athornz
http://bit.ly/2XIrLQw
www.josh.app
Flutter, now with AndroidX
Flutter, now with AndroidX Google announced AndroidX back in May 2018 as a new era of the Android Support Library. Since then, AndroidX…
New post on /r/flutterdev subreddit:
Dart Range package
http://bit.ly/2EZcaok
June 11, 2019 at 12:15AM by hdxdaniel
http://bit.ly/2wOWwak
Dart Range package
http://bit.ly/2EZcaok
June 11, 2019 at 12:15AM by hdxdaniel
http://bit.ly/2wOWwak
Dart packages
super_ranges | Flutter Package
Powerful yet intuitive Ranges for dart
New post on /r/flutterdev subreddit:
Flutter, now with AndroidX
http://bit.ly/2wNlozo
June 11, 2019 at 12:31AM by athornz
http://bit.ly/2XIrLQw
Flutter, now with AndroidX
http://bit.ly/2wNlozo
June 11, 2019 at 12:31AM by athornz
http://bit.ly/2XIrLQw
www.josh.app
Flutter, now with AndroidX
Flutter, now with AndroidX Google announced AndroidX back in May 2018 as a new era of the Android Support Library. Since then, AndroidX…