New post on /r/flutterdev subreddit:
Apply LinearGradient to paint
The following link provides us with a way to draw a semi circle. https://stackoverflow.com/questions/57748469/flutter-how-to-draw-semicircle-half-circleHowever, it seems that the color property on the paint object doesn't accept a LinearGradient as a value (or any kind of a gradient as matter of fact).How do we go about applying a gradient color scheme to a semi circle?
February 01, 2020 at 04:26AM by androiddevforeast
https://ift.tt/31bJLVU
Apply LinearGradient to paint
The following link provides us with a way to draw a semi circle. https://stackoverflow.com/questions/57748469/flutter-how-to-draw-semicircle-half-circleHowever, it seems that the color property on the paint object doesn't accept a LinearGradient as a value (or any kind of a gradient as matter of fact).How do we go about applying a gradient color scheme to a semi circle?
February 01, 2020 at 04:26AM by androiddevforeast
https://ift.tt/31bJLVU
Stack Overflow
Flutter how to draw semicircle (half circle)
How can I draw semicircle like this?
Code:
class DrawHalfCircleClipper extends CustomClipper<Path> {
@override
Path getClip(Size size) {
final Path path = new Path();
...
re...
Code:
class DrawHalfCircleClipper extends CustomClipper<Path> {
@override
Path getClip(Size size) {
final Path path = new Path();
...
re...
New post on Flutter Dev Google group:
10 Best Apps Built Using Flutter Framework
Top 10 Apps Made with Flutter
February 01, 2020 at 05:47AM by Game Reviewer
https://ift.tt/3baQ5BE
10 Best Apps Built Using Flutter Framework
Top 10 Apps Made with Flutter
February 01, 2020 at 05:47AM by Game Reviewer
https://ift.tt/3baQ5BE
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 to make 2 apps with same base code?
I want to make 2 apps on flutter. one for the client-side and 1 for the service provider side and both will connect with the firebase. I want the specific method in the client-side app that, when a client wants to chat with the service provider, the app will search for available or online
February 01, 2020 at 06:35AM by Payal P
https://ift.tt/37NAMwr
How to make 2 apps with same base code?
I want to make 2 apps on flutter. one for the client-side and 1 for the service provider side and both will connect with the firebase. I want the specific method in the client-side app that, when a client wants to chat with the service provider, the app will search for available or online
February 01, 2020 at 06:35AM by Payal P
https://ift.tt/37NAMwr
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 WEB - COUDNT GENERATE PDF DOC USING file.writeAsBytes
// I have been trying to generate pdfs using pdf plugin and wrtie it to a pdf file // but file.wrtieAsBytes not creating any files and its not even throwing any errors or giving any response makePdf() async { final pw.Document doc = pw.Document(); pw.Font font = pw.Font.ttf(await rootBundle.lo
February 01, 2020 at 11:43AM by vinay sharma
https://ift.tt/2Scpw6t
FLUTTER WEB - COUDNT GENERATE PDF DOC USING file.writeAsBytes
// I have been trying to generate pdfs using pdf plugin and wrtie it to a pdf file // but file.wrtieAsBytes not creating any files and its not even throwing any errors or giving any response makePdf() async { final pw.Document doc = pw.Document(); pw.Font font = pw.Font.ttf(await rootBundle.lo
February 01, 2020 at 11:43AM by vinay sharma
https://ift.tt/2Scpw6t
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:
[new package] Sliding_card (an animated card that slides to reveal it's hidden card)
[New package]: sliding_card is available on pub.dev, feel free to use it on your projects And DM me if you need any help.Here is a link to the package: https://pub.dev/packages/sliding_card
February 01, 2020 at 11:38AM by emile977
https://ift.tt/37ZIy6o
[new package] Sliding_card (an animated card that slides to reveal it's hidden card)
[New package]: sliding_card is available on pub.dev, feel free to use it on your projects And DM me if you need any help.Here is a link to the package: https://pub.dev/packages/sliding_card
February 01, 2020 at 11:38AM by emile977
https://ift.tt/37ZIy6o
Dart packages
sliding_card | Flutter Package
Sliding card is a highly customizable flutter package that will help you create animated Cards with a sliding animation effect.
New post on /r/flutterdev subreddit:
I published my first article on Medium: Flutter meets Redux: The Redux way of managing Flutter applications state, Go check it out and share your thoughts
https://ift.tt/36OKdKW
February 01, 2020 at 10:44AM by bardiainjast
https://ift.tt/31f6Fvq
I published my first article on Medium: Flutter meets Redux: The Redux way of managing Flutter applications state, Go check it out and share your thoughts
https://ift.tt/36OKdKW
February 01, 2020 at 10:44AM by bardiainjast
https://ift.tt/31f6Fvq
New post on /r/flutterdev subreddit:
Is flutter WEB the new flash?
Hello everyone, I do not want a flame war, however the flutter for web reminds me of flash, yes it doesn't require a plugin but it is extremely close - its a runtime system that paints everything by itself and not using any of the web technologies (css/html/dom/etc) don't get me wrong html and the dom sucks and css sucks a bit less then the other two, however.. it is what we are used to, it is what we expect:to inspect an element to find a handler and/or put a breakpoint.None of this works with flutter web, even if it works good at some point, even if you cannot distinguish it from the web just by looking on it.. is this the future we want ?What are your thoughts .. do we just get rid of flash to get a new one ?P.S. yes I know all gets compiled typescript becomes a javascript at the end JSX becomes JavaScript and they are not what they were however still even without map files you can put a breakpoint you can get a clue, you can at least find a library used and etc. it is still somehow open... while with flutter.. all is a black box... ;(P.P.S. I like flutter ! I am just concerned.
February 01, 2020 at 12:55PM by nayden_gochev
https://ift.tt/2ScdwS6
Is flutter WEB the new flash?
Hello everyone, I do not want a flame war, however the flutter for web reminds me of flash, yes it doesn't require a plugin but it is extremely close - its a runtime system that paints everything by itself and not using any of the web technologies (css/html/dom/etc) don't get me wrong html and the dom sucks and css sucks a bit less then the other two, however.. it is what we are used to, it is what we expect:to inspect an element to find a handler and/or put a breakpoint.None of this works with flutter web, even if it works good at some point, even if you cannot distinguish it from the web just by looking on it.. is this the future we want ?What are your thoughts .. do we just get rid of flash to get a new one ?P.S. yes I know all gets compiled typescript becomes a javascript at the end JSX becomes JavaScript and they are not what they were however still even without map files you can put a breakpoint you can get a clue, you can at least find a library used and etc. it is still somehow open... while with flutter.. all is a black box... ;(P.P.S. I like flutter ! I am just concerned.
February 01, 2020 at 12:55PM by nayden_gochev
https://ift.tt/2ScdwS6
reddit
Is flutter WEB the new flash?
Hello everyone, I do not want a flame war, however the flutter for web reminds me of flash, yes it doesn't require a plugin but it is extremely...
New post on /r/flutterdev subreddit:
Charts_flutter documentation
Hi all, so I've recently had a challenge with charting libraries in my app. There is charts_flutter (unofficial from Google) which seems to work pretty well for me, as long as my scenarios fit the examples in the gallery. I'm however struggling to find workable documentation on the library's API, leaving me in a trial and error state of just trying to see what works. Any ideas/pointers are welcome.
February 01, 2020 at 12:44PM by mcalila
https://ift.tt/2GLNG24
Charts_flutter documentation
Hi all, so I've recently had a challenge with charting libraries in my app. There is charts_flutter (unofficial from Google) which seems to work pretty well for me, as long as my scenarios fit the examples in the gallery. I'm however struggling to find workable documentation on the library's API, leaving me in a trial and error state of just trying to see what works. Any ideas/pointers are welcome.
February 01, 2020 at 12:44PM by mcalila
https://ift.tt/2GLNG24
reddit
Charts_flutter documentation
Hi all, so I've recently had a challenge with charting libraries in my app. There is charts_flutter (unofficial from Google) which seems to work...
New post on /r/flutterdev subreddit:
Conway's Game Of Life made with Flutter in a DartPad
https://twitter.com/modulovalue/status/1223571926280474624
February 01, 2020 at 12:43PM by modulovalue
https://ift.tt/3b1caCy
Conway's Game Of Life made with Flutter in a DartPad
https://twitter.com/modulovalue/status/1223571926280474624
February 01, 2020 at 12:43PM by modulovalue
https://ift.tt/3b1caCy
Twitter
modulovalue 💙
I challenged my good friend @SlaxXxX to port his Java version of Conway's Game Of Life to #Flutter And he actually did it! He even implemented drawing and a pause button😀Here's a DartPad where you can try it out for yourself: https://t.co/TbKoVZrh15 Repo:…
New post on /r/flutterdev subreddit:
Basic Firebase Auth
https://youtu.be/YeDqyuS_4Ew
February 01, 2020 at 01:37PM by craetornetwork
https://ift.tt/2GHt235
Basic Firebase Auth
https://youtu.be/YeDqyuS_4Ew
February 01, 2020 at 01:37PM by craetornetwork
https://ift.tt/2GHt235
YouTube
Firebase Authentication | Flutter Basics
Firebase Authentication | Flutter BasicsA key part of most interactions with a database, require a user to be present. With firebase authentication, this is ...
New post on /r/flutterdev subreddit:
Generate good looking (and offline) data for your UI prototypes instead of using lorem ipsum 😅.(offline images are also included)
: Hi everyone,I recently made a flutter package for generating clear and neat data offline ( as well as images) I got tired of using lorem ipsum when I was prototyping my UI. Here is the link to the package: https://pub.dev/packages/ultimate_data_generator .Here is the link to the demo APK: https://drive.google.com/file/d/17Hg2KtwUxi_1z82vz2UYkndsZYjcsig2/view?usp=sharing .Data can be generated in 6 different categoriesThe food category (images, vegan, vegetarian, non-vegetarian food names, and ingredients ) .The industry category .The social media category: can generate bio, comments and even reviewsThe human category: basic human data such as name, full name, email, username, iD, job occupation etc... .The places category: Can generate the name of places like colleges, hospitals, hotels, restaurant names. Country name and city names are also included .The general purpose category: countains data that I couldn't categorize, like '' generate percentage'' etc... .feel free to DM me if you have any questions My Instagram: instagram.com/emilecode/ .
February 01, 2020 at 01:18PM by emile977
https://ift.tt/391Zf1w
Generate good looking (and offline) data for your UI prototypes instead of using lorem ipsum 😅.(offline images are also included)
: Hi everyone,I recently made a flutter package for generating clear and neat data offline ( as well as images) I got tired of using lorem ipsum when I was prototyping my UI. Here is the link to the package: https://pub.dev/packages/ultimate_data_generator .Here is the link to the demo APK: https://drive.google.com/file/d/17Hg2KtwUxi_1z82vz2UYkndsZYjcsig2/view?usp=sharing .Data can be generated in 6 different categoriesThe food category (images, vegan, vegetarian, non-vegetarian food names, and ingredients ) .The industry category .The social media category: can generate bio, comments and even reviewsThe human category: basic human data such as name, full name, email, username, iD, job occupation etc... .The places category: Can generate the name of places like colleges, hospitals, hotels, restaurant names. Country name and city names are also included .The general purpose category: countains data that I couldn't categorize, like '' generate percentage'' etc... .feel free to DM me if you have any questions My Instagram: instagram.com/emilecode/ .
February 01, 2020 at 01:18PM by emile977
https://ift.tt/391Zf1w
Dart packages
ultimate_data_generator | Flutter Package
It is the most complete offline data generator for prototyping using Flutter. It gives you access to a lot of realistic data
New post on /r/flutterdev subreddit:
Increase / Shrink Selection in Android Studio - Every Shortcut counts
https://www.youtube.com/watch?v=ZdQPWXoh-GI
February 01, 2020 at 03:01PM by MyracleDesign
https://ift.tt/36KdYfL
Increase / Shrink Selection in Android Studio - Every Shortcut counts
https://www.youtube.com/watch?v=ZdQPWXoh-GI
February 01, 2020 at 03:01PM by MyracleDesign
https://ift.tt/36KdYfL
YouTube
Increase / Shrink Selection in Android Studio - Every Shortcut counts
This is the first episode of Every Shortcut Counts. I will explain here how the Shrink and Increase Selection works and explain where you can find every keyb...
New post on /r/flutterdev subreddit:
workaround YAML?
hey guys, i started learning flutter a short time ago, and loved everything about it except the pubsec.yaml file, it's really a mess to get indentation correct there, so is there any tool/library/plug-in that can make this experience better?
February 01, 2020 at 03:39PM by Hiwa_47
https://ift.tt/2uRpBUY
workaround YAML?
hey guys, i started learning flutter a short time ago, and loved everything about it except the pubsec.yaml file, it's really a mess to get indentation correct there, so is there any tool/library/plug-in that can make this experience better?
February 01, 2020 at 03:39PM by Hiwa_47
https://ift.tt/2uRpBUY
reddit
workaround YAML?
hey guys, i started learning flutter a short time ago, and loved everything about it except the pubsec.yaml file, it's really a mess to get...
New post on /r/flutterdev subreddit:
Flutter Game with Implicit Animations
https://www.youtube.com/watch?v=D-o3g1UZErM
February 01, 2020 at 04:18PM by postgor
https://ift.tt/2Ok9mXs
Flutter Game with Implicit Animations
https://www.youtube.com/watch?v=D-o3g1UZErM
February 01, 2020 at 04:18PM by postgor
https://ift.tt/2Ok9mXs
YouTube
Flutter Game with Implicit Animations
Take a look at my "Mastering Animation in Flutter Course":https://fun-with-flutter.teachable.com/p/mastering-animation-in-flutter/?product_id=1679475&coupon_...
New post on /r/flutterdev subreddit:
Multiple tables in a database in SQFLITE
How can we create multiple tables in Sqflite ?
February 01, 2020 at 05:51PM by crusarappy
https://ift.tt/2UfZAcA
Multiple tables in a database in SQFLITE
How can we create multiple tables in Sqflite ?
February 01, 2020 at 05:51PM by crusarappy
https://ift.tt/2UfZAcA
reddit
Multiple tables in a database in SQFLITE
How can we create multiple tables in Sqflite ?
New post on /r/flutterdev subreddit:
Blurring your UI in Flutter
https://ift.tt/2S7Z3Xr
February 01, 2020 at 06:49PM by EvoNext
https://ift.tt/38YeTL5
Blurring your UI in Flutter
https://ift.tt/2S7Z3Xr
February 01, 2020 at 06:49PM by EvoNext
https://ift.tt/38YeTL5
Medium
Blurring your UI in Flutter
Blurring UI can be a great and effective way of hiding certain elements. Want to blur UI in Flutter? BackDropFilter has your back!
New post on Flutter Dev Google group:
Flutter Dev Team should focus and give time to Win32 and UWP Support to reach billions of devices instead of Mac Os Only focus
My concern was of general nature, Because Flutter team should work on bringing UWP support or Win32 support at least, they are hell bent on supporting Mac Os while billions of windows pc's could benefit from it, And millions of developers could learn flutter instead of .net c# etc Please do this
February 01, 2020 at 07:15PM by Faheem Ahmad
https://ift.tt/2UhdafZ
Flutter Dev Team should focus and give time to Win32 and UWP Support to reach billions of devices instead of Mac Os Only focus
My concern was of general nature, Because Flutter team should work on bringing UWP support or Win32 support at least, they are hell bent on supporting Mac Os while billions of windows pc's could benefit from it, And millions of developers could learn flutter instead of .net c# etc Please do this
February 01, 2020 at 07:15PM by Faheem Ahmad
https://ift.tt/2UhdafZ
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 FindSeat App (Completed User Flows)
This project aim to Flutter practice and self study. This is good example of completed user flows, so you can see how Flutter good at converting from design to production.https://github.com/KhoaSuperman/findseat
February 01, 2020 at 07:40PM by khoahoang668
https://ift.tt/2OhuWM0
Flutter FindSeat App (Completed User Flows)
This project aim to Flutter practice and self study. This is good example of completed user flows, so you can see how Flutter good at converting from design to production.https://github.com/KhoaSuperman/findseat
February 01, 2020 at 07:40PM by khoahoang668
https://ift.tt/2OhuWM0
GitHub
GitHub - KhoaSuperman/findseat: A Completed Functional Flutter App - FindSeat (BLoC + Json API + Unit Test + Firebase Auth)
A Completed Functional Flutter App - FindSeat (BLoC + Json API + Unit Test + Firebase Auth) - KhoaSuperman/findseat
New post on /r/flutterdev subreddit:
End to end ecrypted chat and voice/video chat
I'm considering building an app for long-distance couples to chat and video/voice chat.Security obviously a concern here, are there any SDKs that can help be build it without making a package myself.
February 01, 2020 at 07:39PM by DoPeopleEvenLookHere
https://ift.tt/38Ye7O9
End to end ecrypted chat and voice/video chat
I'm considering building an app for long-distance couples to chat and video/voice chat.Security obviously a concern here, are there any SDKs that can help be build it without making a package myself.
February 01, 2020 at 07:39PM by DoPeopleEvenLookHere
https://ift.tt/38Ye7O9
reddit
End to end ecrypted chat and voice/video chat
I'm considering building an app for long-distance couples to chat and video/voice chat. Security obviously a concern here, are there any SDKs...
New post on /r/flutterdev subreddit:
How to setup Skia WASM with Flutter web?
I heard about Skia having a WASM port (from Andrew Brogdon in the flutter interact '19 during #AskFlutter) (Some canvas-kit experiment)Has anyone worked that out with Flutter Web on the beta channel yet?Any info on this would be highly appreciated
February 01, 2020 at 08:28PM by mannprerak
https://ift.tt/38VNJEL
How to setup Skia WASM with Flutter web?
I heard about Skia having a WASM port (from Andrew Brogdon in the flutter interact '19 during #AskFlutter) (Some canvas-kit experiment)Has anyone worked that out with Flutter Web on the beta channel yet?Any info on this would be highly appreciated
February 01, 2020 at 08:28PM by mannprerak
https://ift.tt/38VNJEL
reddit
How to setup Skia WASM with Flutter web?
I heard about Skia having a WASM port (from Andrew Brogdon in the flutter interact '19 during #AskFlutter) (Some canvas-kit experiment) Has...
New post on /r/flutterdev subreddit:
Flutter FindSeat App - Movie Ticket Booking (Completed User Flows)
https://ift.tt/2uZfwFp
February 01, 2020 at 09:13PM by khoahoang668
https://ift.tt/37QIQwm
Flutter FindSeat App - Movie Ticket Booking (Completed User Flows)
https://ift.tt/2uZfwFp
February 01, 2020 at 09:13PM by khoahoang668
https://ift.tt/37QIQwm
GitHub
KhoaSuperman/findseat
A Completed Functional Flutter App - FindSeat (BLoC + Json API + Unit Test + Firebase Auth) - KhoaSuperman/findseat