New post on /r/flutterdev subreddit:
Flutter Firebase Twitter Authentication
https://ift.tt/3dhezuu
October 09, 2020 at 06:39PM by Bustincherry
https://ift.tt/3iOMw6C
Flutter Firebase Twitter Authentication
https://ift.tt/3dhezuu
October 09, 2020 at 06:39PM by Bustincherry
https://ift.tt/3iOMw6C
joecherry.dev
Flutter Firebase Twitter Authentication
A tutorial on how to authenticate users in your Flutter apps with Twitter and Firebase
New post on /r/flutterdev subreddit:
There's only 14 animated icons and half of them are just reversed versions of the other half.
So 7 use cases is not enough for these. Just be careful if you implement them in your project, you may not have what you're looking for. Add->close is simple and has a high demand, and yet not implemented. I'm not sure where anyone's at on adding more, but the latest beta still has the same 14 (7). No idea on how to create a custom one for my project and not sure if it is worth the trouble or not.Maybe give a like to the issue for visibility? https://github.com/flutter/flutter/issues/42461
October 09, 2020 at 07:35PM by joeyda3rd
https://ift.tt/3lz0CL1
There's only 14 animated icons and half of them are just reversed versions of the other half.
So 7 use cases is not enough for these. Just be careful if you implement them in your project, you may not have what you're looking for. Add->close is simple and has a high demand, and yet not implemented. I'm not sure where anyone's at on adding more, but the latest beta still has the same 14 (7). No idea on how to create a custom one for my project and not sure if it is worth the trouble or not.Maybe give a like to the issue for visibility? https://github.com/flutter/flutter/issues/42461
October 09, 2020 at 07:35PM by joeyda3rd
https://ift.tt/3lz0CL1
GitHub
AnimatedIcons class needs more icons · Issue #42461 · flutter/flutter
Fourteen icons are not enough, especially since many of them are just the reverse animation of each other. Specifically, I need add_close which would animate a plus symbol to an X.
New tweet from FlutterDev:
⏰ Time is running out ➡️ Don't forget to submit your app for the 2020 Material Design Awards and help us celebrate the products that bring the system to life!
📅 Deadline: October 16th 📅
🏆 https://t.co/TdGZe7xOwL— Material Design (@materialdesign) October 5, 2020
October 09, 2020 at 08:00PM
http://twitter.com/FlutterDev/status/1314626683371171842
⏰ Time is running out ➡️ Don't forget to submit your app for the 2020 Material Design Awards and help us celebrate the products that bring the system to life!
📅 Deadline: October 16th 📅
🏆 https://t.co/TdGZe7xOwL— Material Design (@materialdesign) October 5, 2020
October 09, 2020 at 08:00PM
http://twitter.com/FlutterDev/status/1314626683371171842
Google Design
2020 Material Design Awards - Library - Google Design
Nominate your product for a 2020 Material Design Award and help us showcase the flexibility and capability of the Material Design system
New post on /r/flutterdev subreddit:
Bottom Sheet - Permanent & Persistent - Flutter (Tutorial)
https://www.youtube.com/watch?v=84OuUPoO8ng
October 09, 2020 at 07:49PM by JohannesMilke
https://ift.tt/33JRX2s
Bottom Sheet - Permanent & Persistent - Flutter (Tutorial)
https://www.youtube.com/watch?v=84OuUPoO8ng
October 09, 2020 at 07:49PM by JohannesMilke
https://ift.tt/33JRX2s
YouTube
Flutter Tutorial - Bottom Sheet - Permanent & Persistent
Create a persistent bottom sheet in your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/bottom_sheet_persistent
- Buy My Courses: https://j…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/bottom_sheet_persistent
- Buy My Courses: https://j…
New post on Flutter Dev Google group:
Flutter aad_oauth - How to get back to mobile app after the Microsoft authentication.
I created a mobile application using Flutter with Microsoft Azure. Basically, I would like to access the Azure Functions using the Microsoft account. Using my app I was able to access through web browser the Microsoft identity platform, I could Sign In using my credentials, but after that I
October 09, 2020 at 08:45PM by Vinícius Passarella
https://ift.tt/2IfvDp9
Flutter aad_oauth - How to get back to mobile app after the Microsoft authentication.
I created a mobile application using Flutter with Microsoft Azure. Basically, I would like to access the Azure Functions using the Microsoft account. Using my app I was able to access through web browser the Microsoft identity platform, I could Sign In using my credentials, but after that I
October 09, 2020 at 08:45PM by Vinícius Passarella
https://ift.tt/2IfvDp9
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 Shape Maker | Auto-Generate Custom Paint Code
https://www.youtube.com/watch?v=AnKgtKxRLX4
October 09, 2020 at 09:53PM by Elixane
https://ift.tt/2I6j3bA
Flutter Shape Maker | Auto-Generate Custom Paint Code
https://www.youtube.com/watch?v=AnKgtKxRLX4
October 09, 2020 at 09:53PM by Elixane
https://ift.tt/2I6j3bA
YouTube
Flutter Shape Maker | Auto-Generate Custom Paint Code | Flutter UI Design Tutorial
#flutter #custompaint #shapemaker
This is an announcement video for "Flutter Shape Maker" which is a new Tool to Auto-Generate Custom Paint code by Hand Made shape. We will go through the features provided by this app and will create a Bottom Navigation…
This is an announcement video for "Flutter Shape Maker" which is a new Tool to Auto-Generate Custom Paint code by Hand Made shape. We will go through the features provided by this app and will create a Bottom Navigation…
New post on /r/flutterdev subreddit:
[flutter-builder] generate flutter widget tree with typescript. (Just released!)
just released "flutter-builder" -- a oop based js/ts flutter widget tree builder for nodejs (star it if you like!)All major standard widgets and dart types are supported wrapped with typescript.this can be used for sketch / figma plugin development for flutter. with general usage coverage. https://github.com/bridgedxyz/flutter-builderthis package enables you to generate flutter code from web/server platform. written in pure typescript. use flutter syntax from js for ease of development. and complex tree building.example ``` ts const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)}) console.log(text.build().finalize())// >> // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black))const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)})const row = new Row({children: [ text, ]})console.log(row.build().finalize())// >> // Row( // children: [ // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black)) // ] // ); ```
October 09, 2020 at 10:50PM by softmarshmallow
https://ift.tt/3iLqJgb
[flutter-builder] generate flutter widget tree with typescript. (Just released!)
just released "flutter-builder" -- a oop based js/ts flutter widget tree builder for nodejs (star it if you like!)All major standard widgets and dart types are supported wrapped with typescript.this can be used for sketch / figma plugin development for flutter. with general usage coverage. https://github.com/bridgedxyz/flutter-builderthis package enables you to generate flutter code from web/server platform. written in pure typescript. use flutter syntax from js for ease of development. and complex tree building.example ``` ts const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)}) console.log(text.build().finalize())// >> // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black))const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)})const row = new Row({children: [ text, ]})console.log(row.build().finalize())// >> // Row( // children: [ // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black)) // ] // ); ```
October 09, 2020 at 10:50PM by softmarshmallow
https://ift.tt/3iLqJgb
GitHub
bridgedxyz/flutter-builder
flutter widget builder for nodejs. Contribute to bridgedxyz/flutter-builder development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Dart's Async Future explained in Rock Climbing
https://youtu.be/VnYYL-ESQVM
October 10, 2020 at 06:01AM by thehappyharis
https://ift.tt/34KUfgS
Dart's Async Future explained in Rock Climbing
https://youtu.be/VnYYL-ESQVM
October 10, 2020 at 06:01AM by thehappyharis
https://ift.tt/34KUfgS
YouTube
Dart's Async Future explained in Rock Climbing
A future represents the results of an asynchronous operation, and it comprises of two states, uncompleted or completed.
👉 Subscribe to our weekly Flutter newsletter:
https://learnfluttercode.com/newsletter
📱 Pre Sign Up to Learn Flutter App :
https:/…
👉 Subscribe to our weekly Flutter newsletter:
https://learnfluttercode.com/newsletter
📱 Pre Sign Up to Learn Flutter App :
https:/…
New post on Flutter Dev Google group:
Pie chart using charts_flutter package
I would like to use create a pie chart to display the following data with labels. I'm not sure how to use the below code. I will appreciate if you can share any example with me. https://ift.tt/2GA0P21 Data: iOS 10 Linux 12 Android 14 Windows 16
October 10, 2020 at 10:39AM by App Testing
https://ift.tt/2GIRLrx
Pie chart using charts_flutter package
I would like to use create a pie chart to display the following data with labels. I'm not sure how to use the below code. I will appreciate if you can share any example with me. https://ift.tt/2GA0P21 Data: iOS 10 Linux 12 Android 14 Windows 16
October 10, 2020 at 10:39AM by App Testing
https://ift.tt/2GIRLrx
New post on /r/flutterdev subreddit:
Auto complete problem in android studio
I will use '|' to indicate caret.
Doing the same thing with icon: or color: produces nice results
October 10, 2020 at 10:24AM by bonega
https://ift.tt/36PV62x
Auto complete problem in android studio
I will use '|' to indicate caret.
Column(mainAxisAlignment: center|)How come the auto-completion will suggest Alignment.center as first item?MainAxisAlignment.center is suggested as number 20 or something.
Doing the same thing with icon: or color: produces nice results
October 10, 2020 at 10:24AM by bonega
https://ift.tt/36PV62x
New post on Flutter Dev Google group:
Word Puzzle Grid
I am trying to create a word search puzzle using the flutter grid. I want to know how to use a swipe animation and record that event on each letter inside the grid.
October 10, 2020 at 12:28PM by Visakh Vijayan
https://ift.tt/2FlAnsi
Word Puzzle Grid
I am trying to create a word search puzzle using the flutter grid. I want to know how to use a swipe animation and record that event on each letter inside the grid.
October 10, 2020 at 12:28PM by Visakh Vijayan
https://ift.tt/2FlAnsi
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:
Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'.
Hello, I am granting appbundle using android studio. the working properly in simulator and mobile but when run flutter build appbundle then throwing this error. Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'. please help me regarding this issue. Thanks
October 10, 2020 at 12:35PM by Arshad Khan Sherani
https://ift.tt/3iJrJl3
Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'.
Hello, I am granting appbundle using android studio. the working properly in simulator and mobile but when run flutter build appbundle then throwing this error. Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'. please help me regarding this issue. Thanks
October 10, 2020 at 12:35PM by Arshad Khan Sherani
https://ift.tt/3iJrJl3
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:
Issue #9 of Mobile Developers Cafe is out now, with loads of Flutter Dev articles and a lot more
https://ift.tt/34FKy3z
October 10, 2020 at 12:35PM by iranjith4
https://ift.tt/30R7uf0
Issue #9 of Mobile Developers Cafe is out now, with loads of Flutter Dev articles and a lot more
https://ift.tt/34FKy3z
October 10, 2020 at 12:35PM by iranjith4
https://ift.tt/30R7uf0
New post on Flutter Dev Google group:
Get bounds()
Hello please help How to use get bounds LatLng in flutter leaflet ?
October 10, 2020 at 01:19PM by sona
https://ift.tt/3iKMBs8
Get bounds()
Hello please help How to use get bounds LatLng in flutter leaflet ?
October 10, 2020 at 01:19PM by sona
https://ift.tt/3iKMBs8
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:
How can I open a website in an app made with Flutter and Dart?
I would like to develop following app: the first screen shows buttons. When the user clicks on a button, a website opens within the app. I have found the possibility that a web browser opens when the user clicks on a button. But the web browser doesn't open in the app, instead he opens outside
October 10, 2020 at 01:53PM by Di di
https://ift.tt/30RzcrQ
How can I open a website in an app made with Flutter and Dart?
I would like to develop following app: the first screen shows buttons. When the user clicks on a button, a website opens within the app. I have found the possibility that a web browser opens when the user clicks on a button. But the web browser doesn't open in the app, instead he opens outside
October 10, 2020 at 01:53PM by Di di
https://ift.tt/30RzcrQ
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 who moved from Xamarin to Flutter?
I wonder if there is anyone who moved from Xamarin to Flutter and could share their experience. I personally have done very little with Xamarin but so far Flutter is simply better in every way. But maybe there are things that were better using Xamarin? Is there anything Xamarin can do that Flutter can not?
October 10, 2020 at 02:54PM by John28381
https://ift.tt/3jO5VWI
Anyone who moved from Xamarin to Flutter?
I wonder if there is anyone who moved from Xamarin to Flutter and could share their experience. I personally have done very little with Xamarin but so far Flutter is simply better in every way. But maybe there are things that were better using Xamarin? Is there anything Xamarin can do that Flutter can not?
October 10, 2020 at 02:54PM by John28381
https://ift.tt/3jO5VWI
reddit
Anyone who moved from Xamarin to Flutter?
I wonder if there is anyone who moved from Xamarin to Flutter and could share their experience. I personally have done very little with Xamarin...
New post on /r/flutterdev subreddit:
Flutter File Structure for Big Projects
https://youtu.be/Mt41FpSS-Vo
October 10, 2020 at 03:50PM by immacoder
https://ift.tt/34K2byZ
Flutter File Structure for Big Projects
https://youtu.be/Mt41FpSS-Vo
October 10, 2020 at 03:50PM by immacoder
https://ift.tt/34K2byZ
YouTube
Flutter File Structure for Big Projects
Flutter File Structure for Big Projects
When working with bigger projects, you need a well organized project. If you don't your code will be hard to maintain and scale. It is especially crucial if you are working with a team. We covered my file structure…
When working with bigger projects, you need a well organized project. If you don't your code will be hard to maintain and scale. It is especially crucial if you are working with a team. We covered my file structure…
New post on /r/flutterdev subreddit:
Migrating from Xamarin?
Hi guys I'm working for a company that has a few decent sized xamarin apps. We're sick of Xamarin and are looking to migrate to flutter. Has anyone got any experience incrementally migrating to flutter? Maybe embedding some flutter features bit by bit? Thanks!
October 10, 2020 at 03:29PM by flutterBoi
https://ift.tt/2FidZQx
Migrating from Xamarin?
Hi guys I'm working for a company that has a few decent sized xamarin apps. We're sick of Xamarin and are looking to migrate to flutter. Has anyone got any experience incrementally migrating to flutter? Maybe embedding some flutter features bit by bit? Thanks!
October 10, 2020 at 03:29PM by flutterBoi
https://ift.tt/2FidZQx
reddit
Migrating from Xamarin?
Hi guys I'm working for a company that has a few decent sized xamarin apps. We're sick of Xamarin and are looking to migrate to flutter. Has...
New post on /r/flutterdev subreddit:
Image.file() widget not refreshing
https://ift.tt/2GNfNBD
October 10, 2020 at 05:45PM by palebt
https://ift.tt/3iLg3hG
Image.file() widget not refreshing
https://ift.tt/2GNfNBD
October 10, 2020 at 05:45PM by palebt
https://ift.tt/3iLg3hG
Rock and Null
Image.file() widget not refreshing
In theory, if you have unique keys for your widgets, you will get your UI to redraw, right? It turns out that Flutter is using a global image cache that I was not aware of.
New post on Flutter Dev Google group:
Dual Screen
Dear Flutters, I have a device with two screens. Screen at the front of the device and the second screen in the back of the device. The back screen works as a mirror mode I want to display something else on the back screen How do I do this on the flap. It supports android device only
October 10, 2020 at 07:56PM by SaLeh Aleid
https://ift.tt/3dfx9mB
Dual Screen
Dear Flutters, I have a device with two screens. Screen at the front of the device and the second screen in the back of the device. The back screen works as a mirror mode I want to display something else on the back screen How do I do this on the flap. It supports android device only
October 10, 2020 at 07:56PM by SaLeh Aleid
https://ift.tt/3dfx9mB
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:
Starflut or http
Hi everyone,I'm making an android application in which I need to use some python scripts. Basically, I need to take a picture in the app, use that picture in the python script and then the python script needs to "send back" a few images and some info.As I understand, starflut is the package intended to use when needing to implement python in Flutter. However, I can't seem to find any good documentation or examples which makes it pretty much impossible to use it. Can anyone help me with this problem? Or if not, is it doable to do this using http?Thanks!
October 10, 2020 at 07:33PM by BV62
https://ift.tt/33KwR3S
Starflut or http
Hi everyone,I'm making an android application in which I need to use some python scripts. Basically, I need to take a picture in the app, use that picture in the python script and then the python script needs to "send back" a few images and some info.As I understand, starflut is the package intended to use when needing to implement python in Flutter. However, I can't seem to find any good documentation or examples which makes it pretty much impossible to use it. Can anyone help me with this problem? Or if not, is it doable to do this using http?Thanks!
October 10, 2020 at 07:33PM by BV62
https://ift.tt/33KwR3S
reddit
Starflut or http
A subreddit for Google's portable UI framework.