New post on /r/flutterdev subreddit:
Color Filters in Flutter with NO EXTERNAL PACKAGES
https://youtu.be/qz95pL1-r1E
October 26, 2020 at 08:40AM by Paras_Jain_09
https://ift.tt/37Ou2kG
Color Filters in Flutter with NO EXTERNAL PACKAGES
https://youtu.be/qz95pL1-r1E
October 26, 2020 at 08:40AM by Paras_Jain_09
https://ift.tt/37Ou2kG
YouTube
Flutter - Image Filters WITHOUT External Package | Flutter UI Design Tutorial
#flutter #filters #mobileapp
In this Flutter UI Design Tutorial, we will be taking a look at Creating Image Filters in Flutter without using any External Package. We will be using ColorFiltered Widget and using its power to create Quick and Easy to Implement…
In this Flutter UI Design Tutorial, we will be taking a look at Creating Image Filters in Flutter without using any External Package. We will be using ColorFiltered Widget and using its power to create Quick and Easy to Implement…
New post on Flutter Dev Google group:
[windows][eventChannel] How should I passing native buffer to dart in efficient way
I want to passing a buffer array from native plugin in windows. I try the example for eventChannel & EncodableValue, but at the dart side I only get the type _Int32ArrayView which I can't use. 1. How can i transfer _Int32ArrayView to Uint32List? 2. Is there other efficient way to passing
October 26, 2020 at 10:25AM by hereMaxwell
https://ift.tt/3jvWQRe
[windows][eventChannel] How should I passing native buffer to dart in efficient way
I want to passing a buffer array from native plugin in windows. I try the example for eventChannel & EncodableValue, but at the dart side I only get the type _Int32ArrayView which I can't use. 1. How can i transfer _Int32ArrayView to Uint32List? 2. Is there other efficient way to passing
October 26, 2020 at 10:25AM by hereMaxwell
https://ift.tt/3jvWQRe
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 to limit window resize in Flutter Desktop
https://ift.tt/3oCEfqG
October 26, 2020 at 11:54AM by regnex
https://ift.tt/31DMskv
How to limit window resize in Flutter Desktop
https://ift.tt/3oCEfqG
October 26, 2020 at 11:54AM by regnex
https://ift.tt/31DMskv
Medium
How to limit window resize in Flutter Desktop
Flutter Desktop support allows you to compile Flutter source code to a native Windows, macOS, or Linux desktop app.
New post on /r/flutterdev subreddit:
Firestore - Upload And Retrieve Data With Snackbar(Without context)
https://youtu.be/_9umrsu0Yz8
October 26, 2020 at 01:58PM by draculamasterwinzy
https://ift.tt/35AcENZ
Firestore - Upload And Retrieve Data With Snackbar(Without context)
https://youtu.be/_9umrsu0Yz8
October 26, 2020 at 01:58PM by draculamasterwinzy
https://ift.tt/35AcENZ
YouTube
Flutter Firestore Add and Read Data Tutorial | Flutter Firestore CRUD Example | Cloud Firestore CRUD
Create And Read Data For Cloud Firestore Flutter ! In this episode WRITE AND READ DATA FROM CLOUD FIRESTORE!!!!! Flutter Udemy Clone Step By Step Guide! Build your own Udemy with Flutter and Firebase!⚡Flutter Firestore Add and Read Data Tutorial | Flutter…
New post on /r/flutterdev subreddit:
State management
Are there any videos or open source projects that explain state management well?
October 26, 2020 at 01:16PM by Snoo16007
https://ift.tt/35sGPqc
State management
Are there any videos or open source projects that explain state management well?
October 26, 2020 at 01:16PM by Snoo16007
https://ift.tt/35sGPqc
reddit
State management
Are there any videos or open source projects that explain state management well?
New post on /r/flutterdev subreddit:
Creating Stateful Dialog Form in Flutter
https://www.youtube.com/watch?v=Fd5ZlOxyZJ4
October 26, 2020 at 12:56PM by Elixane
https://ift.tt/31L3XPI
Creating Stateful Dialog Form in Flutter
https://www.youtube.com/watch?v=Fd5ZlOxyZJ4
October 26, 2020 at 12:56PM by Elixane
https://ift.tt/31L3XPI
YouTube
Flutter - Creating Stateful Dialog Form | Flutter UI Design Tutorial | Stateful Builder
#flutter #mobileapp #flutterui
In this Flutter UI Design Tutorial, We will be taking a look at creating Dialogs in Flutter where you can take input from users in Text Fields, Checkboxes, or any other type of Input that you might need. We will make the dialog…
In this Flutter UI Design Tutorial, We will be taking a look at creating Dialogs in Flutter where you can take input from users in Text Fields, Checkboxes, or any other type of Input that you might need. We will make the dialog…
New post on /r/flutterdev subreddit:
Binder: A lightweight, yet powerful way to bind your application state with your business logic.
https://ift.tt/35AqLCX
October 26, 2020 at 02:19PM by nirataro
https://ift.tt/2IZjmFA
Binder: A lightweight, yet powerful way to bind your application state with your business logic.
https://ift.tt/35AqLCX
October 26, 2020 at 02:19PM by nirataro
https://ift.tt/2IZjmFA
GitHub
GitHub - letsar/binder: A lightweight, yet powerful way to bind your application state with your business logic.
A lightweight, yet powerful way to bind your application state with your business logic. - GitHub - letsar/binder: A lightweight, yet powerful way to bind your application state with your business ...
New post on /r/flutterdev subreddit:
Change the code to work with firebase
I'm new in app development, I want to know how I can make this code react with cloud Firebase, how to link "swiper" with document firebasethis is what I want to make:https://ibb.co/SPv9tzGHere is my code:
October 26, 2020 at 04:01PM by xavi_soufian
https://ift.tt/2HyrBbc
Change the code to work with firebase
I'm new in app development, I want to know how I can make this code react with cloud Firebase, how to link "swiper" with document firebasethis is what I want to make:https://ibb.co/SPv9tzGHere is my code:
SafeArea(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Container(
height: 500,
padding: EdgeInsets.only(left: 32, top: 10),
child: Swiper(
itemCount: pic.length,
itemWidth: MediaQuery.of(context).size.width - 2 * 64,
layout: SwiperLayout.STACK,
itemBuilder: (context, index) {
return InkWell(
onTap: (){
Navigator.push(context, PageRouteBuilder(
pageBuilder: (context,a,b) => ArticlePage(
text: pic[index],
),
));
},
);
},
),
)
],
),
),
here is the model:class Article {
String imageUrl;
String title;
String categories;
Article({
this.imageUrl,
this.title,
this.categories,
});
}
final List<Article> pic= [
Article(
imageUrl: 'assets/scr.jpg',
title: 'Jack the parisian',
categories: 'Games',
),
Article(
imageUrl: 'assets/scr.jpg',
title: 'best vedio games',
categories: 'Games',
),
],
October 26, 2020 at 04:01PM by xavi_soufian
https://ift.tt/2HyrBbc
ImgBB
a
Image a hosted in ImgBB
New post on /r/flutterdev subreddit:
Just released an iCalendar (.ics) parser
Hi guys, I've just released a package written in pure dart to parse ics file. Seems like there wasn't any parser for this until now. It is still in early development so I'd be glad to have your feedbacks.Pub: https://pub.dev/packages/icalendar_parserGithub: https://github.com/TesteurManiak/icalendar_parser
October 26, 2020 at 03:56PM by TesteurManiak
https://ift.tt/35uWJk4
Just released an iCalendar (.ics) parser
Hi guys, I've just released a package written in pure dart to parse ics file. Seems like there wasn't any parser for this until now. It is still in early development so I'd be glad to have your feedbacks.Pub: https://pub.dev/packages/icalendar_parserGithub: https://github.com/TesteurManiak/icalendar_parser
October 26, 2020 at 03:56PM by TesteurManiak
https://ift.tt/35uWJk4
Dart packages
icalendar_parser | Dart package
Package to parse iCalendar (.ics) files written in pure Dart.
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 62! - Tutorials, videos, packages, and much more!
https://ift.tt/3ooLFOd
October 26, 2020 at 02:56PM by vensign
https://ift.tt/2G0q79b
Flutter Tap Weekly Newsletter Week 62! - Tutorials, videos, packages, and much more!
https://ift.tt/3ooLFOd
October 26, 2020 at 02:56PM by vensign
https://ift.tt/2G0q79b
Fluttertap
Newsletter Issue 62
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 62
New post on Flutter Dev Google group:
100% Interview position ll Product Manager. ll at San Francisco, CA.
Hello, Any available consultants for *Product Manager**. *I have an excellent project with my client at *San Francisco, CA.* Kindly share resume at *Maz...@mirthconsulting.net
100% Interview position ll Product Manager. ll at San Francisco, CA.
Hello, Any available consultants for *Product Manager**. *I have an excellent project with my client at *San Francisco, CA.* Kindly share resume at *Maz...@mirthconsulting.net
New post on Flutter Dev Google group:
Documentation guide On mouse hover
Hi Team, How to bring the documentation guide in Andriod studio as like as in VS code when mouse hover. Please let me know. Thank you. [image: image.png]
October 26, 2020 at 05:38PM by Ram Kumar
https://ift.tt/31M5jd7
Documentation guide On mouse hover
Hi Team, How to bring the documentation guide in Andriod studio as like as in VS code when mouse hover. Please let me know. Thank you. [image: image.png]
October 26, 2020 at 05:38PM by Ram Kumar
https://ift.tt/31M5jd7
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:
Pie Chart - FLChart - Flutter (Tutorial)
https://www.youtube.com/watch?v=rZx_isqXrhg
October 26, 2020 at 05:43PM by JohannesMilke
https://ift.tt/37HuiCf
Pie Chart - FLChart - Flutter (Tutorial)
https://www.youtube.com/watch?v=rZx_isqXrhg
October 26, 2020 at 05:43PM by JohannesMilke
https://ift.tt/37HuiCf
YouTube
Flutter Tutorial - Pie Chart - FLChart
Structure your data in pie charts within your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/fl_pie_chart_example
- Buy My Courses: https:/…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/fl_pie_chart_example
- Buy My Courses: https:/…
New post on /r/flutterdev subreddit:
We created a small Flutter community for solo developers to help and to motivate each other by having regular virtual meetups.
Getting back into development as a solo developer myself, and just starting my flutter journey, I did not have someone to bounce ideas off of, to look at code with, or even to keep me accountable. I wasn't sure if I could make it through my first large project or even get past those troublesome bugs. These benefits of a team would be very helpful to someone like me. So, last week, I made a post here about starting a group of 5 people to meet virtually on a regular basis, discuss each other's projects, help if we are able, and help to hold each other accountable. Well, u/definitely_robots said "let's do it" and we started a discord server and we called it "Flutter Buddies".From that post alone, 20+ showed up. Everyone is awesome and many of us are very active participants. We have built an awesome discord server, had our first successful meetup, tossed around app ideas, shared our goals, and are helping each other with our projects and code. We even have a voice chat room with a music player set up to hangout while coding like a real development team might. In just a few days, I've already made a ton of progress on my project that I might not have, learned about some really cool tools, and really enjoy the community of people we have.We're going to add more meeting times so more people can benefit from the group, start doing small educational events, and I may even propose we try a small group project if enough people are willing.I'm really excited about this group. I wanted to put an invite out there one more time if anyone else in reddit land has the same solo coder story and wants to join in. There's no skill level requirement, everyone's welcome. We do ask you if you're interested in joining to try to come to meetups and be involved in the conversation, give back where you can. If you do want to join, make sure you claim the server role in #welcome channel to unlock the private channels.We created a vanity URL for our invite, it's http://flutterbuddies.com
October 26, 2020 at 05:28PM by joeyda3rd
https://ift.tt/37OKxO1
We created a small Flutter community for solo developers to help and to motivate each other by having regular virtual meetups.
Getting back into development as a solo developer myself, and just starting my flutter journey, I did not have someone to bounce ideas off of, to look at code with, or even to keep me accountable. I wasn't sure if I could make it through my first large project or even get past those troublesome bugs. These benefits of a team would be very helpful to someone like me. So, last week, I made a post here about starting a group of 5 people to meet virtually on a regular basis, discuss each other's projects, help if we are able, and help to hold each other accountable. Well, u/definitely_robots said "let's do it" and we started a discord server and we called it "Flutter Buddies".From that post alone, 20+ showed up. Everyone is awesome and many of us are very active participants. We have built an awesome discord server, had our first successful meetup, tossed around app ideas, shared our goals, and are helping each other with our projects and code. We even have a voice chat room with a music player set up to hangout while coding like a real development team might. In just a few days, I've already made a ton of progress on my project that I might not have, learned about some really cool tools, and really enjoy the community of people we have.We're going to add more meeting times so more people can benefit from the group, start doing small educational events, and I may even propose we try a small group project if enough people are willing.I'm really excited about this group. I wanted to put an invite out there one more time if anyone else in reddit land has the same solo coder story and wants to join in. There's no skill level requirement, everyone's welcome. We do ask you if you're interested in joining to try to come to meetups and be involved in the conversation, give back where you can. If you do want to join, make sure you claim the server role in #welcome channel to unlock the private channels.We created a vanity URL for our invite, it's http://flutterbuddies.com
October 26, 2020 at 05:28PM by joeyda3rd
https://ift.tt/37OKxO1
reddit
Flutter solo developer meet up group?
**Update:** So we got the server up and running and already a decent number of people joined. We'll figure this out as it goes, but seems that...
New post on /r/flutterdev subreddit:
How’s Flutter for web doing these days?
Been a while since I looked at flutter. How is it going? Any updates on web or any news when it will be ready for production?
October 26, 2020 at 05:14PM by augst1
https://ift.tt/3kwRQxf
How’s Flutter for web doing these days?
Been a while since I looked at flutter. How is it going? Any updates on web or any news when it will be ready for production?
October 26, 2020 at 05:14PM by augst1
https://ift.tt/3kwRQxf
reddit
How’s Flutter for web doing these days?
Been a while since I looked at flutter. How is it going? Any updates on web or any news when it will be ready for production?
New post on /r/flutterdev subreddit:
How to use FVM - Flutter Version Management | English
https://youtu.be/EQ4yLT4VCic
October 26, 2020 at 05:07PM by Ecrax
https://ift.tt/35A3oth
How to use FVM - Flutter Version Management | English
https://youtu.be/EQ4yLT4VCic
October 26, 2020 at 05:07PM by Ecrax
https://ift.tt/35A3oth
YouTube
How to use FVM - Flutter Version Management | English
Today, I will show you how to use FVM.
Go ahead and subscribe for free
→ https://bit.ly/2VMefML
-----------------------------------------------------
Links Mentioned:
Blog
→ https://ecrax.github.io/2020/10/26/How-to-use-FVM/
FVM - GitHub
→ https:/…
Go ahead and subscribe for free
→ https://bit.ly/2VMefML
-----------------------------------------------------
Links Mentioned:
Blog
→ https://ecrax.github.io/2020/10/26/How-to-use-FVM/
FVM - GitHub
→ https:/…
New post on Flutter Dev Google group:
Crashlytics Console not showing crashes
Hello, I am trying to implement Crashlytics in flutter by using this blog post( https://ift.tt/34sFuAx) . I am using sample code on the flutter pub.dev page. ( https://ift.tt/3e0hUyc
October 26, 2020 at 09:46PM by NoobTheOofy Oof
https://ift.tt/3mqqBVs
Crashlytics Console not showing crashes
Hello, I am trying to implement Crashlytics in flutter by using this blog post( https://ift.tt/34sFuAx) . I am using sample code on the flutter pub.dev page. ( https://ift.tt/3e0hUyc
October 26, 2020 at 09:46PM by NoobTheOofy Oof
https://ift.tt/3mqqBVs
Medium
How to keep track of bugs by Integrating Firebase Crashlytics in Flutter App
I’m excited to write about this topic because its an area where all mobile app developers spend much time on.
New post on /r/flutterdev subreddit:
Flutter newbie looking for tips!
Hey everyone,I recently got started trying to learn flutter/dart. However, I feel the sheer amount of knowledge/information required to get started quite overwhelming. I feel like I'm mostly copy-pasting without really knowing what it does. It's really different to the stuff I'm used to. Since I also can't really experiment with small things without building big chunks of code.I hoping some of you can share some newbie tips with me, maybe even from your personal experience.(rn I'm following this course https://pro.academind.com/p/learn-flutter-dart-to-build-ios-android-apps-2020)thanks for taking the time and reading this!
October 26, 2020 at 09:17PM by KingZero010
https://ift.tt/3mnaTdS
Flutter newbie looking for tips!
Hey everyone,I recently got started trying to learn flutter/dart. However, I feel the sheer amount of knowledge/information required to get started quite overwhelming. I feel like I'm mostly copy-pasting without really knowing what it does. It's really different to the stuff I'm used to. Since I also can't really experiment with small things without building big chunks of code.I hoping some of you can share some newbie tips with me, maybe even from your personal experience.(rn I'm following this course https://pro.academind.com/p/learn-flutter-dart-to-build-ios-android-apps-2020)thanks for taking the time and reading this!
October 26, 2020 at 09:17PM by KingZero010
https://ift.tt/3mnaTdS
Academind
[LEGACY] Learn Flutter & Dart to Build iOS & Android Apps
A Complete Guide to the Flutter SDK & Flutter Framework for building native iOS and Android apps
New post on /r/flutterdev subreddit:
Going Walkabout - Flutter Photo Management
https://youtu.be/qapyPqg5Z-4
October 26, 2020 at 09:15PM by aadjemonkeyrock
https://ift.tt/3dZfVtX
Going Walkabout - Flutter Photo Management
https://youtu.be/qapyPqg5Z-4
October 26, 2020 at 09:15PM by aadjemonkeyrock
https://ift.tt/3dZfVtX
YouTube
Going Walkabout - Flutter Photo management
Going Walkabout is a mobile travel blog and photos are part of the memories. In this episode I continue working on the photo picker. It's now implemented in the whole app
Links:
- Going Walkabout: https://goingwalkabout.app
- AppStore: https://itunes.ap…
Links:
- Going Walkabout: https://goingwalkabout.app
- AppStore: https://itunes.ap…
New post on /r/flutterdev subreddit:
How can I detect words containing # and @
How can i detect words that contain # and/or @ for example #flutter or @flutter just like social media apps and highlight them in blue
October 26, 2020 at 10:22PM by ihs_ahm
https://ift.tt/35x4ypo
How can I detect words containing # and @
How can i detect words that contain # and/or @ for example #flutter or @flutter just like social media apps and highlight them in blue
October 26, 2020 at 10:22PM by ihs_ahm
https://ift.tt/35x4ypo
reddit
How can I detect words containing # and @
How can i detect words that contain # and/or @ for example #flutter or @flutter just like social media apps and highlight them in blue
New post on /r/flutterdev subreddit:
RegExp
I am trying to limit textfield input to any number without leading zeros. What is the proper RegExp syntax for this in Dart?
October 26, 2020 at 11:10PM by Tutaweza
https://ift.tt/37HNgZt
RegExp
I am trying to limit textfield input to any number without leading zeros. What is the proper RegExp syntax for this in Dart?
October 26, 2020 at 11:10PM by Tutaweza
https://ift.tt/37HNgZt
reddit
RegExp
A subreddit for Google's portable UI framework.