New post on /r/flutterdev subreddit:
scrollable_positioned_list | List that allows scrolling to a specific item in the list.
https://ift.tt/2Wkc1nb
May 03, 2020 at 12:08PM by Purple_Pizzazz
https://ift.tt/2KWaaQc
scrollable_positioned_list | List that allows scrolling to a specific item in the list.
https://ift.tt/2Wkc1nb
May 03, 2020 at 12:08PM by Purple_Pizzazz
https://ift.tt/2KWaaQc
Dart packages
scrollable_positioned_list | Flutter Package
A list with helper methods to programmatically scroll to an item.
New post on Flutter Dev Google group:
info
Hi, my code is working properly but showing one info and i trying to solve, please help me to find a solution? check attached image.
May 03, 2020 at 12:47PM by Gulam Fahad Ahmed
https://ift.tt/2ynICjR
info
Hi, my code is working properly but showing one info and i trying to solve, please help me to find a solution? check attached image.
May 03, 2020 at 12:47PM by Gulam Fahad Ahmed
https://ift.tt/2ynICjR
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:
android studio code not working
when i start the android studio app , there is already a code written there, i tried running that code on virtual device (nexus 5) ,its not getting open on the device, its taking a lot of time ,please help
May 03, 2020 at 12:47PM by Shailesh Pandey
https://ift.tt/2Swh2rz
android studio code not working
when i start the android studio app , there is already a code written there, i tried running that code on virtual device (nexus 5) ,its not getting open on the device, its taking a lot of time ,please help
May 03, 2020 at 12:47PM by Shailesh Pandey
https://ift.tt/2Swh2rz
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:
PopupMenuButton Flutter
https://youtu.be/jxKI8syAbsc
May 03, 2020 at 01:08PM by TheTechDesigner
https://ift.tt/2WlxImP
PopupMenuButton Flutter
https://youtu.be/jxKI8syAbsc
May 03, 2020 at 01:08PM by TheTechDesigner
https://ift.tt/2WlxImP
YouTube
Flutter Widget | 25 | PopupMenu | PopupMenuButton, MenuOption, PopupMenuItem, Text,Icon | Speed Code
#TheTechDesigner
#Flutter
#FlutterUI
#SpeedCode
#FlutterTutorial
#FlutterAnimation
#FlutterWidgets
#actions
#Widget
#MenuOption
#enum
#itemBuilder
#MenuOption
#PopupMenuButton
#PopupMenuEntry
#PopupMenuItem
#Text
#Icons
#Colors
#size
Wire Organizer + Charging…
#Flutter
#FlutterUI
#SpeedCode
#FlutterTutorial
#FlutterAnimation
#FlutterWidgets
#actions
#Widget
#MenuOption
#enum
#itemBuilder
#MenuOption
#PopupMenuButton
#PopupMenuEntry
#PopupMenuItem
#Text
#Icons
#Colors
#size
Wire Organizer + Charging…
New post on /r/flutterdev subreddit:
InlineTextField - allows to edit text in a place
https://ift.tt/35ouWRW
May 03, 2020 at 01:08PM by echedev
https://ift.tt/3b30NZn
InlineTextField - allows to edit text in a place
https://ift.tt/35ouWRW
May 03, 2020 at 01:08PM by echedev
https://ift.tt/3b30NZn
Dart packages
uic | Flutter Package
A set of Flutter UI components that simplifies implementing most used UI cases.
New post on /r/flutterdev subreddit:
Update Flutter App that is run on client
If I've made an Flutter Application, when I need to update this application? I mean if it is run on client, when the packages of flutter are update, the application it will ask to update the flutter packages??
May 03, 2020 at 02:08PM by maliDevFlutter
https://ift.tt/2KTEFWV
Update Flutter App that is run on client
If I've made an Flutter Application, when I need to update this application? I mean if it is run on client, when the packages of flutter are update, the application it will ask to update the flutter packages??
May 03, 2020 at 02:08PM by maliDevFlutter
https://ift.tt/2KTEFWV
reddit
Update Flutter App that is run on client
If I've made an Flutter Application, when I need to update this application? I mean if it is run on client, when the packages of flutter are...
New post on /r/flutterdev subreddit:
Can i build live audio streaming with Flutter ?
hello guys :)have you any idea about ho can i build live audio streaming Flutter app so users can stream or listen live audio without without URLthanks ❤️
May 03, 2020 at 01:29PM by hossin839
https://ift.tt/2KRuEJV
Can i build live audio streaming with Flutter ?
hello guys :)have you any idea about ho can i build live audio streaming Flutter app so users can stream or listen live audio without without URLthanks ❤️
May 03, 2020 at 01:29PM by hossin839
https://ift.tt/2KRuEJV
reddit
Can i build live audio streaming with Flutter ?
hello guys :) have you any idea about ho can i build live audio streaming Flutter app so users can stream or listen live audio without without...
New post on /r/flutterdev subreddit:
Advice about Stateful widget with Provider / How Model classes work?
First topic:So I finally got around Provider and I made it work in my Weather app. Now, my app consists of one main screen which is a stateless widget getting weather info from provider. This all works by getting weather for user's location. I want to implement a search field so users can search for any city, but in order to do that I have to convert my only screen to stateful widget (only for this purpose), is it worth it? Alternative would be making another screen with stateful widget which would display only the textfield, but is that better? I personally think its more practical both functionally and design wise if textfield remains on the same page. I just want someone more experienced to give me advice about it.Second topic:I made this Model Weather class, basically it consists only of constructor which takes in the weather data I use in my app (temp, humidity, wind speed..). I have this other class where api call happens. There I have a function which gets weather info and stores it in a variable.Example :double get temp => _tempvoid GetWeather() {_temp = apidata['temp'];}I access temp in my main screen using Provider, so in all this logic my Model Weather class is never used and I dont really see how and why use it at all. But ive seen many people on github and everywhere else have models for everything.
May 03, 2020 at 02:43PM by itsdjoki
https://ift.tt/3d9h2FW
Advice about Stateful widget with Provider / How Model classes work?
First topic:So I finally got around Provider and I made it work in my Weather app. Now, my app consists of one main screen which is a stateless widget getting weather info from provider. This all works by getting weather for user's location. I want to implement a search field so users can search for any city, but in order to do that I have to convert my only screen to stateful widget (only for this purpose), is it worth it? Alternative would be making another screen with stateful widget which would display only the textfield, but is that better? I personally think its more practical both functionally and design wise if textfield remains on the same page. I just want someone more experienced to give me advice about it.Second topic:I made this Model Weather class, basically it consists only of constructor which takes in the weather data I use in my app (temp, humidity, wind speed..). I have this other class where api call happens. There I have a function which gets weather info and stores it in a variable.Example :double get temp => _tempvoid GetWeather() {_temp = apidata['temp'];}I access temp in my main screen using Provider, so in all this logic my Model Weather class is never used and I dont really see how and why use it at all. But ive seen many people on github and everywhere else have models for everything.
May 03, 2020 at 02:43PM by itsdjoki
https://ift.tt/3d9h2FW
New post on /r/flutterdev subreddit:
SQL db options for flutter web app?
Noob questionI want to develop a new flutter app which works with a local sql database. I have later pivoted the idea to build it as a webapp where I have zero experience. Though I'm learning by exploring.I have my basic MVP POC already developed in python that runs on my machine.Here are some of my findings after doing some researchHeard about firebase, but for my application, I prefer SQL database ( as I already have POC developed using SQL)I can make my python scripts to run on some kind of server like flask or django to serve my app over REST apiI have to port all my logic into dart so that my flutter webapp can just run as an app.Coming to the exact questionsHow can I host my web app, if I can make a flask server that communicates with flutter webapp?Is it possible to create just a db file in my webapp and just host it on firebase hosting. My webapp would be served with just reading and writing data from this db, I don't need a backend then?Sorry, if some questions sound just too dumb. I'd also appreciate if someone can point me any resources to learn more about web hosting.
May 03, 2020 at 02:42PM by veneno11
https://ift.tt/2WrUs4O
SQL db options for flutter web app?
Noob questionI want to develop a new flutter app which works with a local sql database. I have later pivoted the idea to build it as a webapp where I have zero experience. Though I'm learning by exploring.I have my basic MVP POC already developed in python that runs on my machine.Here are some of my findings after doing some researchHeard about firebase, but for my application, I prefer SQL database ( as I already have POC developed using SQL)I can make my python scripts to run on some kind of server like flask or django to serve my app over REST apiI have to port all my logic into dart so that my flutter webapp can just run as an app.Coming to the exact questionsHow can I host my web app, if I can make a flask server that communicates with flutter webapp?Is it possible to create just a db file in my webapp and just host it on firebase hosting. My webapp would be served with just reading and writing data from this db, I don't need a backend then?Sorry, if some questions sound just too dumb. I'd also appreciate if someone can point me any resources to learn more about web hosting.
May 03, 2020 at 02:42PM by veneno11
https://ift.tt/2WrUs4O
reddit
SQL db options for flutter web app?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Real arguments for BLoC vs Redux
What is easiest to maintain, test, efficiency etc.
May 03, 2020 at 02:41PM by Corthza
https://ift.tt/2VXS6LT
Real arguments for BLoC vs Redux
What is easiest to maintain, test, efficiency etc.
May 03, 2020 at 02:41PM by Corthza
https://ift.tt/2VXS6LT
reddit
Real arguments for BLoC vs Redux
What is easiest to maintain, test, efficiency etc.
New post on /r/flutterdev subreddit:
Can't communicate between Go server and flutter client app.
https://ift.tt/2Sw4lNx
May 03, 2020 at 02:34PM by DangerousRing0
https://ift.tt/35rcrMv
Can't communicate between Go server and flutter client app.
https://ift.tt/2Sw4lNx
May 03, 2020 at 02:34PM by DangerousRing0
https://ift.tt/35rcrMv
New post on Flutter Dev Google group:
modify source code or re-implement a custom one?
Hi, flutter developers, here is a quesion. sometimes, the predefined widgets in flutter cannot match my requirement,like popup menu, meanwhile, only 1 or 2 lines code modification would be enough to me. so in this circumstance, should i modify my local flutter source code directly or just
May 03, 2020 at 03:05PM by carmen che
https://ift.tt/2VY2P91
modify source code or re-implement a custom one?
Hi, flutter developers, here is a quesion. sometimes, the predefined widgets in flutter cannot match my requirement,like popup menu, meanwhile, only 1 or 2 lines code modification would be enough to me. so in this circumstance, should i modify my local flutter source code directly or just
May 03, 2020 at 03:05PM by carmen che
https://ift.tt/2VY2P91
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:
Four in a row on CodePen - GitHub repo (https://ift.tt/3c3TF0k)
https://ift.tt/2YrQKdN
May 03, 2020 at 03:51PM by imtoori
https://ift.tt/35qdjkJ
Four in a row on CodePen - GitHub repo (https://ift.tt/3c3TF0k)
https://ift.tt/2YrQKdN
May 03, 2020 at 03:51PM by imtoori
https://ift.tt/35qdjkJ
GitHub
imtoori/flutter_fiar
Four-In-A-Row in Flutter . Contribute to imtoori/flutter_fiar development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
mailto URIs for Flutter and Dart
https://ift.tt/35rzFCa
May 03, 2020 at 04:29PM by serial_dev
https://ift.tt/3c1a85g
mailto URIs for Flutter and Dart
https://ift.tt/35rzFCa
May 03, 2020 at 04:29PM by serial_dev
https://ift.tt/3c1a85g
Dart packages
mailto | Dart Package
Simple Dart package for creating mailto links in your Flutter apps
New post on Flutter Dev Google group:
Unable to run flutter command . Could not find Dart Dev Snapshot
Please someone help with this issue just tried running a new flutter project.
May 03, 2020 at 05:54PM by rakesh lorentz
https://ift.tt/2zU6mg5
Unable to run flutter command . Could not find Dart Dev Snapshot
Please someone help with this issue just tried running a new flutter project.
May 03, 2020 at 05:54PM by rakesh lorentz
https://ift.tt/2zU6mg5
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:
FlutterForce — Week 75
https://ift.tt/2z1vr8u
May 03, 2020 at 06:50PM by flutterist
https://ift.tt/2VXN5CN
FlutterForce — Week 75
https://ift.tt/2z1vr8u
May 03, 2020 at 06:50PM by flutterist
https://ift.tt/2VXN5CN
Medium
FlutterForce — #Week 75
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Here is how you can make a send Icon Fly using flutter
Learn here how to create an animation on the buttonMedium Post link :https://medium.com/flutter-community/animated-send-button-in-flutter-94c1834268b1Youtube video link.https://www.youtube.com/watch?v=nxGH3oC-XwQ&t=544s
May 03, 2020 at 09:35PM by hasnen712
https://ift.tt/2Syi1HP
Here is how you can make a send Icon Fly using flutter
Learn here how to create an animation on the buttonMedium Post link :https://medium.com/flutter-community/animated-send-button-in-flutter-94c1834268b1Youtube video link.https://www.youtube.com/watch?v=nxGH3oC-XwQ&t=544s
May 03, 2020 at 09:35PM by hasnen712
https://ift.tt/2Syi1HP
Medium
Animated Send Button in Flutter
Hi, let's Take a look at what we are going to build at the end of this story. Here is the Gif
New post on Flutter Dev Google group:
Finished with error: Gradle task assembleDebug failed with exit code 1
When I tried running the code, it displayed these errors. What needs to be done now?
May 03, 2020 at 09:39PM by Poorvi Mittal
https://ift.tt/3daFXsD
Finished with error: Gradle task assembleDebug failed with exit code 1
When I tried running the code, it displayed these errors. What needs to be done now?
May 03, 2020 at 09:39PM by Poorvi Mittal
https://ift.tt/3daFXsD
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 do I make use of Model class
I am making a weather app in flutter. I use Provider for state management and the basic functionality is there. I get weather info from class in which I make api request and then with provider I pass it to my main screen. The thing is Ive seen everywhere people use Models, I know what it is, I know how to make it. But I dont know how to use it. My Provider is linked to the ApiCall class. So where would I make the instance of this model. Anyway if someone could explain it to me, I looked for explanation on youtube, on github, on others people projects. I just cant see how to implement it myself.
May 03, 2020 at 10:44PM by itsdjoki
https://ift.tt/2z8PX7e
How do I make use of Model class
I am making a weather app in flutter. I use Provider for state management and the basic functionality is there. I get weather info from class in which I make api request and then with provider I pass it to my main screen. The thing is Ive seen everywhere people use Models, I know what it is, I know how to make it. But I dont know how to use it. My Provider is linked to the ApiCall class. So where would I make the instance of this model. Anyway if someone could explain it to me, I looked for explanation on youtube, on github, on others people projects. I just cant see how to implement it myself.
May 03, 2020 at 10:44PM by itsdjoki
https://ift.tt/2z8PX7e
reddit
How do I make use of Model class
I am making a weather app in flutter. I use Provider for state management and the basic functionality is there. I get weather info from class in...
New post on /r/flutterdev subreddit:
Multi-Tenancy with Flutter
Has anyone had success creating a Multi-Tenant mobile app using flutter? And if so, what did you use to setup your backend?I am currently working on a Multi-Tenant app and would love to hear from people who have experience with this structure.
May 03, 2020 at 11:45PM by smauryholmes
https://ift.tt/2ylLXzW
Multi-Tenancy with Flutter
Has anyone had success creating a Multi-Tenant mobile app using flutter? And if so, what did you use to setup your backend?I am currently working on a Multi-Tenant app and would love to hear from people who have experience with this structure.
May 03, 2020 at 11:45PM by smauryholmes
https://ift.tt/2ylLXzW
reddit
Multi-Tenancy with Flutter
Has anyone had success creating a Multi-Tenant mobile app using flutter? And if so, what did you use to setup your backend? I am currently...