New post on /r/flutterdev subreddit:
Flutter Tutorial - 2/2 Image - Deep Dive (Johannes Milke)
https://www.youtube.com/watch?v=7HoEsLvvRPg
December 15, 2020 at 06:18PM by JohannesMilke
https://ift.tt/37iaFQt
Flutter Tutorial - 2/2 Image - Deep Dive (Johannes Milke)
https://www.youtube.com/watch?v=7HoEsLvvRPg
December 15, 2020 at 06:18PM by JohannesMilke
https://ift.tt/37iaFQt
YouTube
Flutter Tutorial - Flutter Image - Rounded Image & Filtered Image
Learn everything about Flutter Images such as adding filters, borders & different shapes!
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/image_ii_example…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/image_ii_example…
New post on /r/flutterdev subreddit:
Detective, real-time state inspection made simple
https://twitter.com/norbertkozsir/status/1338928820477431809
December 15, 2020 at 08:32PM by norbert515
https://ift.tt/3oT4Lv9
Detective, real-time state inspection made simple
https://twitter.com/norbertkozsir/status/1338928820477431809
December 15, 2020 at 08:32PM by norbert515
https://ift.tt/3oT4Lv9
Twitter
Norbert Kozsir
To all #Flutter devs who don't write 100% bug-free code every time, this is for you! 🧐 I introduce you, 🎉Detective!🎉 Inspect your app state in real-time with more to come. Website --> https://t.co/ksagkOHTG5 Read more 😎 https://t.co/EY8fj4BrpF
New post on /r/flutterdev subreddit:
file_selector plugin
I've seen that the Flutter team recently posted the file_selector plugin on pub.dev:https://pub.dev/packages/file_selectorIt's basically a cross-platform file picker that works on web, mobile, and desktop. I tried it out but I seem to be just getting errors saying "not implemented", did anyone try it out yet?I did try to look at the source code on GitHub -- https://github.com/flutter/plugins/tree/master/packages/file_selector -- but it seems there's only the Flutter/Dart part, not the iOS/Android/web/desktop stuff, so I can't see what's been implemented there and what not.
December 15, 2020 at 09:19PM by Elixane
https://ift.tt/2WgmD6L
file_selector plugin
I've seen that the Flutter team recently posted the file_selector plugin on pub.dev:https://pub.dev/packages/file_selectorIt's basically a cross-platform file picker that works on web, mobile, and desktop. I tried it out but I seem to be just getting errors saying "not implemented", did anyone try it out yet?I did try to look at the source code on GitHub -- https://github.com/flutter/plugins/tree/master/packages/file_selector -- but it seems there's only the Flutter/Dart part, not the iOS/Android/web/desktop stuff, so I can't see what's been implemented there and what not.
December 15, 2020 at 09:19PM by Elixane
https://ift.tt/2WgmD6L
Dart packages
The official repository for Dart and Flutter packages.
Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter and general Dart programs.
New post on /r/flutterdev subreddit:
Tell me your opinion: how much native mobile development should I know before learning Dart/Flutter?
Hi everyone, I've been programming for years but have really niched myself into web development (not that there's anything wrong with that-- I just have always had broader/other interests) and was finally thinking I'll try to make some headway into learning mobile development.Tools like Flutter and React Native are so exciting to me, I'd love to see how they progress in the future. It makes me want to dive right in and start learning how to apply everything I currently know about programming to making cross-platform apps.But, I wonder... how much experience should I have in native mobile development before deciding to go cross-platform?As I said, I've mostly been a web developer. I've only coded 2 Android apps during my undergrad, and never an iOS app.I'm truly interested in specifically these cross-platform technologies and where they can lead me (in terms of work and personal development), but should I buckle down and build some native apps and knowledge for both Android and iOS before doing so? I want to know your opinion and reasoning. Thanks for any advice!
December 16, 2020 at 02:41AM by OwnLie1989
https://ift.tt/3np8Nv0
Tell me your opinion: how much native mobile development should I know before learning Dart/Flutter?
Hi everyone, I've been programming for years but have really niched myself into web development (not that there's anything wrong with that-- I just have always had broader/other interests) and was finally thinking I'll try to make some headway into learning mobile development.Tools like Flutter and React Native are so exciting to me, I'd love to see how they progress in the future. It makes me want to dive right in and start learning how to apply everything I currently know about programming to making cross-platform apps.But, I wonder... how much experience should I have in native mobile development before deciding to go cross-platform?As I said, I've mostly been a web developer. I've only coded 2 Android apps during my undergrad, and never an iOS app.I'm truly interested in specifically these cross-platform technologies and where they can lead me (in terms of work and personal development), but should I buckle down and build some native apps and knowledge for both Android and iOS before doing so? I want to know your opinion and reasoning. Thanks for any advice!
December 16, 2020 at 02:41AM by OwnLie1989
https://ift.tt/3np8Nv0
reddit
Tell me your opinion: how much native mobile development should I...
Hi everyone, I've been programming for years but have really niched myself into web development (not that there's anything wrong with that-- I...
New post on /r/flutterdev subreddit:
Simple CustomPaint vs Containers for drawing chessboard
I completely miss in Flutter's documentation the advantages and disadvantages of doing things differently, especially when to use CustomPaint. I know I can test it myself, but should everyone do? Waste collaborative development time.Imagine that you want to draw a chessboard/checkerboard (8x8 with white or black tiles interchanging).How does the 3 following solutions differ from each other (CPU, memory, render time wise):Create it using rows and columns (or Grid/Table) and each of their children is a Container with color, width and height provided.Same as above but wrap entire board in SizedBox of desired width and height (board dimensions), however individual tiles have only color provided, they are either autosized or each wrapped in Expanded widget if necessary.CustomPaint, paint one big white square of entire board size and than sixteen black tiles placed on top of it.Appreciate your feedback
December 16, 2020 at 03:39AM by marcus-jaco
https://ift.tt/3ahf9ce
Simple CustomPaint vs Containers for drawing chessboard
I completely miss in Flutter's documentation the advantages and disadvantages of doing things differently, especially when to use CustomPaint. I know I can test it myself, but should everyone do? Waste collaborative development time.Imagine that you want to draw a chessboard/checkerboard (8x8 with white or black tiles interchanging).How does the 3 following solutions differ from each other (CPU, memory, render time wise):Create it using rows and columns (or Grid/Table) and each of their children is a Container with color, width and height provided.Same as above but wrap entire board in SizedBox of desired width and height (board dimensions), however individual tiles have only color provided, they are either autosized or each wrapped in Expanded widget if necessary.CustomPaint, paint one big white square of entire board size and than sixteen black tiles placed on top of it.Appreciate your feedback
December 16, 2020 at 03:39AM by marcus-jaco
https://ift.tt/3ahf9ce
reddit
Simple CustomPaint vs Containers for drawing chessboard
I completely miss in Flutter's documentation the advantages and disadvantages of doing things differently, especially when to use CustomPaint. I...
New post on Flutter Dev Google group:
Make dynamic textField
Hello Everyone, I am creating a page where I am getting data from api . I want user to modify that data if needed, for that I am using textdield. Please guide me how to make dynamic textfield or capture data dynimically from text field. Please help me on this.
December 16, 2020 at 06:38AM by Raju Kumar
https://ift.tt/3oXL6u8
Make dynamic textField
Hello Everyone, I am creating a page where I am getting data from api . I want user to modify that data if needed, for that I am using textdield. Please guide me how to make dynamic textfield or capture data dynimically from text field. Please help me on this.
December 16, 2020 at 06:38AM by Raju Kumar
https://ift.tt/3oXL6u8
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:
Google sign in without firebase
I recently found out this video that explains how to google signin in flutter web without firebase pretty easy and straightforward (you can easily do it for app, there's info in the comments on how to). As there is not much documentation about it I think it could be useful for some people if I share it.https://www.youtube.com/watch?v=52DM6y4lFaQ
December 16, 2020 at 12:51PM by xenydev
https://ift.tt/388GVEP
Google sign in without firebase
I recently found out this video that explains how to google signin in flutter web without firebase pretty easy and straightforward (you can easily do it for app, there's info in the comments on how to). As there is not much documentation about it I think it could be useful for some people if I share it.https://www.youtube.com/watch?v=52DM6y4lFaQ
December 16, 2020 at 12:51PM by xenydev
https://ift.tt/388GVEP
YouTube
Flutter web Google Sign in | without firebase | JUNE 2020 | complete tutorial | TrikyDeck
#flutterweb #googlesignin #without-firebase
A complete step by step demo for creating Google signing in flutter web without firebase
For blog readers & Realtime example @ https://trikydeck.github.io/blog/#/google-sign-in-without-firebase
[no voice][better…
A complete step by step demo for creating Google signing in flutter web without firebase
For blog readers & Realtime example @ https://trikydeck.github.io/blog/#/google-sign-in-without-firebase
[no voice][better…
New post on /r/flutterdev subreddit:
Flutter Location Package, Tap Builder & more - WEEK 49 - PUB.DEV RELEASES
https://youtube.com/watch?v=QFf7M_ojeq0&feature=share
December 16, 2020 at 12:06PM by syntacops
https://ift.tt/3moEd3h
Flutter Location Package, Tap Builder & more - WEEK 49 - PUB.DEV RELEASES
https://youtube.com/watch?v=QFf7M_ojeq0&feature=share
December 16, 2020 at 12:06PM by syntacops
https://ift.tt/3moEd3h
YouTube
Flutter Location Package, Tap Builder & more - WEEK 49 - PUB.DEV RELEASES
Get ready for the new pub.dev flutter & dart releases of calendar week 49. Among them are a flutter location package providing you with a country picker, state picker and city picker to select a certain location, an inkwell alternative that enables you to…
New post on Flutter Dev Google group:
Native Web View
Hey all, I am trying to replace webview_flutter plugin with native UIWebView. I am stuck with this error when using native view: Unhandled Exception: PlatformException(unregistered_view_type, trying to create a view with an unregistered type, unregistered view type: 'webview', null)
December 16, 2020 at 01:44PM by Sawsan Sbeih
https://ift.tt/3mrhqnr
Native Web View
Hey all, I am trying to replace webview_flutter plugin with native UIWebView. I am stuck with this error when using native view: Unhandled Exception: PlatformException(unregistered_view_type, trying to create a view with an unregistered type, unregistered view type: 'webview', null)
December 16, 2020 at 01:44PM by Sawsan Sbeih
https://ift.tt/3mrhqnr
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 Development Trends in 2021: Real-time Collaboration
https://ift.tt/3gQwVEn
December 16, 2020 at 02:15PM by Elegium
https://ift.tt/2LISGKP
Flutter Development Trends in 2021: Real-time Collaboration
https://ift.tt/3gQwVEn
December 16, 2020 at 02:15PM by Elegium
https://ift.tt/2LISGKP
Medium
Flutter Development Trends in 2021: Real-time Collaboration
The world is running online now. The industry of software development isn’t an exception. Desktop IDEs and editors add new tools &…
New post on /r/flutterdev subreddit:
Can anyone suggest some websites for getting vector images for my ui designs.
I am creating a login and signup app and was inspired by many videos on YouTube, and now i am thinking of place where i can get vector images.
December 16, 2020 at 03:55PM by backslashflutter
https://ift.tt/3mtB95U
Can anyone suggest some websites for getting vector images for my ui designs.
I am creating a login and signup app and was inspired by many videos on YouTube, and now i am thinking of place where i can get vector images.
December 16, 2020 at 03:55PM by backslashflutter
https://ift.tt/3mtB95U
reddit
Can anyone suggest some websites for getting vector images for my...
I am creating a login and signup app and was inspired by many videos on YouTube, and now i am thinking of place where i can get vector images.
New post on /r/flutterdev subreddit:
Flutter Starter · A Flutter starter-kit for production-level apps
https://ift.tt/2WlKW3y
December 16, 2020 at 03:20PM by sanketsahu
https://ift.tt/37mRzIT
Flutter Starter · A Flutter starter-kit for production-level apps
https://ift.tt/2WlKW3y
December 16, 2020 at 03:20PM by sanketsahu
https://ift.tt/37mRzIT
New post on /r/flutterdev subreddit:
Flutter Tutorial - Onboarding UI Screen (Johannes Milke)
https://www.youtube.com/watch?v=CQlA2p--oEg
December 16, 2020 at 05:29PM by JohannesMilke
https://ift.tt/384Zxpm
Flutter Tutorial - Onboarding UI Screen (Johannes Milke)
https://www.youtube.com/watch?v=CQlA2p--oEg
December 16, 2020 at 05:29PM by JohannesMilke
https://ift.tt/384Zxpm
YouTube
Flutter Tutorial - Onboarding UI Screen
Create your custom and beautiful onboarding screens easily with Flutter.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training | https://heyflutter.com
👉 Flutter Masterclass Courses…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training | https://heyflutter.com
👉 Flutter Masterclass Courses…
New tweet from FlutterDev:
Everyone is invited! 🥳 pic.twitter.com/35HWogleoE— Flutter (@FlutterDev) December 16, 2020
December 16, 2020 at 06:10PM
http://twitter.com/FlutterDev/status/1339256577480683521
Everyone is invited! 🥳 pic.twitter.com/35HWogleoE— Flutter (@FlutterDev) December 16, 2020
December 16, 2020 at 06:10PM
http://twitter.com/FlutterDev/status/1339256577480683521
Twitter
Flutter
Everyone is invited! 🥳
New post on /r/flutterdev subreddit:
Best Practice for Authentication using JWT in Flutter?
Hello! I am a fullstack developer who's testing the waters of mobile app development with Flutter. I have an existing backend, which is capable of handling OAuth2 using Google or Facebook IDPs. The flow for the frontend React app is something along the lines of this:
1. Click on login with google
2. Proc a consent screen
3. Google or FB send their tokens and user data to a callback URL on the backend
4. Backend generates JWT
5. Backend redirects the frontend to a URL with the generated JWTs in the URL behind a # sign
6. Frontend parses the URL, extracts the JWT and saves them into the state managerPresuming that I want to use the same Auth flow on the existing Backend, how would this be handled differently in a Flutter app? My main concerns are steps 2, 5 and 6. I am not quite too sure how the consent screen is handled on mobile apps, and how can the backend send back the tokens using the HTTP redirect method (is this even possible?).Thank you!
December 16, 2020 at 07:53PM by recycled_bin
https://ift.tt/3oWYpuB
Best Practice for Authentication using JWT in Flutter?
Hello! I am a fullstack developer who's testing the waters of mobile app development with Flutter. I have an existing backend, which is capable of handling OAuth2 using Google or Facebook IDPs. The flow for the frontend React app is something along the lines of this:
1. Click on login with google
2. Proc a consent screen
3. Google or FB send their tokens and user data to a callback URL on the backend
4. Backend generates JWT
5. Backend redirects the frontend to a URL with the generated JWTs in the URL behind a # sign
6. Frontend parses the URL, extracts the JWT and saves them into the state managerPresuming that I want to use the same Auth flow on the existing Backend, how would this be handled differently in a Flutter app? My main concerns are steps 2, 5 and 6. I am not quite too sure how the consent screen is handled on mobile apps, and how can the backend send back the tokens using the HTTP redirect method (is this even possible?).Thank you!
December 16, 2020 at 07:53PM by recycled_bin
https://ift.tt/3oWYpuB
reddit
Best Practice for Authentication using JWT in Flutter?
Hello! I am a fullstack developer who's testing the waters of mobile app development with Flutter. I have an existing backend, which is capable of...
New post on /r/flutterdev subreddit:
I had tried to make my splash screen with flutter, beginning for the app development source: https://ift.tt/38q51LJ
https://ift.tt/38c5rFi
December 16, 2020 at 08:10PM by Aaris_Kazi
https://ift.tt/3ampCD1
I had tried to make my splash screen with flutter, beginning for the app development source: https://ift.tt/38q51LJ
https://ift.tt/38c5rFi
December 16, 2020 at 08:10PM by Aaris_Kazi
https://ift.tt/3ampCD1
GitHub
GitHub - Aaris-Kazi/Splash-Screen-Flutter
Contribute to Aaris-Kazi/Splash-Screen-Flutter development by creating an account on GitHub.
New post on Flutter Dev Google group:
Flutter drop down button
Hello! I have problem with drop down list options because displays in all screen so i want to make this smaller. (Check the screenshots below) I've tried SignleChildeScrollview but I'm still getting error. Thank you! [image: SC1.png][image: SC2.png][image: SC3.png]
December 16, 2020 at 09:22PM by Πέτρος Πολλάκης
https://ift.tt/37ntP7G
Flutter drop down button
Hello! I have problem with drop down list options because displays in all screen so i want to make this smaller. (Check the screenshots below) I've tried SignleChildeScrollview but I'm still getting error. Thank you! [image: SC1.png][image: SC2.png][image: SC3.png]
December 16, 2020 at 09:22PM by Πέτρος Πολλάκης
https://ift.tt/37ntP7G
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 you name your data classes?
I am learning Flutter at the moment and it strikes me that many of the Widgets use very simple names that I have found already collide with names I would normally use to store plain-old-data.What do you experienced Flutter devs do about this? Do you use a suffix like
December 16, 2020 at 09:52PM by grandygames
https://ift.tt/2WnG1Pm
How do you name your data classes?
I am learning Flutter at the moment and it strikes me that many of the Widgets use very simple names that I have found already collide with names I would normally use to store plain-old-data.What do you experienced Flutter devs do about this? Do you use a suffix like
Data
or something on data classes?December 16, 2020 at 09:52PM by grandygames
https://ift.tt/2WnG1Pm
reddit
How do you name your data classes?
I am learning Flutter at the moment and it strikes me that many of the Widgets use very simple names that I have found already collide with names...
New post on Flutter Dev Google group:
Question on Text fields...
Hey... In my project I confused at one thing. I want a flutter app where in text field user if enter 5 then 5 text widgets will be appears, If he/she enter 7 then 7 text widgets will appears..... If you get any idea, please help
December 16, 2020 at 10:16PM by Meet Patel
https://ift.tt/388D2jn
Question on Text fields...
Hey... In my project I confused at one thing. I want a flutter app where in text field user if enter 5 then 5 text widgets will be appears, If he/she enter 7 then 7 text widgets will appears..... If you get any idea, please help
December 16, 2020 at 10:16PM by Meet Patel
https://ift.tt/388D2jn
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:
Firebase UID output to document with typescript cloud function
Hello, I'm new to both programming and Flutter but I'm starting to get my head around it. I am trying to put together an app that combines user and location information via Firebase so that I can show multiple user locations on a map. What I need help with and would like to do is write the
December 16, 2020 at 10:46PM by Nathan Jones
https://ift.tt/3ak98LU
Firebase UID output to document with typescript cloud function
Hello, I'm new to both programming and Flutter but I'm starting to get my head around it. I am trying to put together an app that combines user and location information via Firebase so that I can show multiple user locations on a map. What I need help with and would like to do is write the
December 16, 2020 at 10:46PM by Nathan Jones
https://ift.tt/3ak98LU
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:
Flutter IntelliJ Plugin M52.1 Release
We published a point release today that allows defining additional arguments to be passed to the test runner. [image: Screen Shot 2020-12-15 at 3.31.11 PM.png]
December 16, 2020 at 11:30PM by Steve Messick
https://ift.tt/2K25tYl
Flutter IntelliJ Plugin M52.1 Release
We published a point release today that allows defining additional arguments to be passed to the test runner. [image: Screen Shot 2020-12-15 at 3.31.11 PM.png]
December 16, 2020 at 11:30PM by Steve Messick
https://ift.tt/2K25tYl
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.