New post on /r/flutterdev subreddit:
Chewie Video Player
https://youtu.be/FKBhqq7Lf-0
March 18, 2021 at 02:02PM by realappdev
https://ift.tt/3tz3XxK
Chewie Video Player
https://youtu.be/FKBhqq7Lf-0
March 18, 2021 at 02:02PM by realappdev
https://ift.tt/3tz3XxK
YouTube
Flutter Video Player With Controls|Video Player Fullscreen|Flutter Chewie Video Player|Netflix Clone
In this video, Lets Setup VIDEO PLAYER for our DEV COMMUNITY APP. Lets goooo!! 5.Video Player - Dev Community App | Flutter Video Player With Controls | Vide...
New post on /r/flutterdev subreddit:
How to Convert Color to String and Back to a Color In Flutter?
https://ift.tt/3bYoIgz
March 18, 2021 at 02:00PM by lil_dragplix
https://ift.tt/3bYzlzL
How to Convert Color to String and Back to a Color In Flutter?
https://ift.tt/3bYoIgz
March 18, 2021 at 02:00PM by lil_dragplix
https://ift.tt/3bYzlzL
Flutter Agency
How to Convert Color to String and Back to a Color In Flutter?? - Flutter Agency
Color and ColorSwatch constants which represent the Material design's color palette...Convert Color to String and Back to a Color In Flutter
New post on /r/flutterdev subreddit:
What are the best use cases for Flutter web?
I read a lot of comments about Flutter web in reddit. It's clear that Flutter web is not a web framework nor a web library.If it's not a web framework, then what is it?Why someone would hire Flutter web instead of react native for web or react web or view to do the job? I chose the word 'hier' on purpose, because we all hiring tools to get the job done and there is a price to pay even if it is not apparent in the first place
March 18, 2021 at 01:44PM by Intelligent_Moose770
https://ift.tt/2OCR5bn
What are the best use cases for Flutter web?
I read a lot of comments about Flutter web in reddit. It's clear that Flutter web is not a web framework nor a web library.If it's not a web framework, then what is it?Why someone would hire Flutter web instead of react native for web or react web or view to do the job? I chose the word 'hier' on purpose, because we all hiring tools to get the job done and there is a price to pay even if it is not apparent in the first place
March 18, 2021 at 01:44PM by Intelligent_Moose770
https://ift.tt/2OCR5bn
reddit
What are the best use cases for Flutter web?
I read a lot of comments about Flutter web in reddit. It's clear that Flutter web is not a web framework nor a web library. If it's not a web...
New post on /r/flutterdev subreddit:
I got DioError [DioErrorType.RESPONSE]: Http status error [400] when send form data using dio and post method to request
I got when I request this data, I'm using Dio package to send request, I tried to replace the content type with application/json and I checked my header and my authorization, and also I got the same error.and this is my data that I passed it to the post method:FormData formData = FormData.fromMap(
{
'data': {
"text": questionController.text,
"helping_text": hintController.text,
"score": int.parse(scoreController.text),
"status": 1,
"question_type": 1,
"options": [
{
"text": answerController1.text,
"is_correct": answerCheck1,
"status": 1
},
{
"text": answerController2.text,
"is_correct": answerCheck2,
"status": 1
},
{
"text": answerController3.text,
"is_correct": answerCheck3,
"status": 1
}
]
},
// 'question_image': {
// 'question_image': questionImage,
// 'type': 'image/',
// }
},
);
await addQuestion.addApiQuestion(
// file,
formData,
widget.quizId,
// context,
);
}and this is my request code:class AddQuestion {
addApiQuestion(
formData,
quizId,
) async {
final String url = apiServer + 'quizzes/exam/$quizId/questions/add/';
try {
var response = await Dio().post(
url,
data: formData,
options: Options(
headers: {
'accept': '*/*',
'Authorization': 'Bearer ${AppHelper().getToken().access}',
'contentType': 'multipart/form-data',
},
),
);
/\We added 302 here as it indicates a redirection response from GET request*
but here it comes from the POST request, so Dio raises an Exception,
so to workaround the problem we considre it as success,
any way it's not the best way to handle this, but it's a workaround\/*
if (response.statusCode == 200 ||
response.statusCode == 201 ||
response.statusCode == 302) {
var message = json.decode(response.statusMessage);
printClassNameWithNumber(runtimeType, lineNumber,
'response of add question message ${response.statusCode.toString()}');
printClassNameWithNumber(runtimeType, lineNumber, 'body $formData');
printClassNameWithNumber(runtimeType, lineNumber, 'body $message');
return message;
} else {
// toastMessage('server error', "", context);
print('Response error code = ${response.statusCode}');
return null;
}
} catch (e) {
print('erro $e');
return null;
}
}
}
March 18, 2021 at 01:21PM by Memo_Adel
https://ift.tt/3txXuDf
I got DioError [DioErrorType.RESPONSE]: Http status error [400] when send form data using dio and post method to request
I got when I request this data, I'm using Dio package to send request, I tried to replace the content type with application/json and I checked my header and my authorization, and also I got the same error.and this is my data that I passed it to the post method:FormData formData = FormData.fromMap(
{
'data': {
"text": questionController.text,
"helping_text": hintController.text,
"score": int.parse(scoreController.text),
"status": 1,
"question_type": 1,
"options": [
{
"text": answerController1.text,
"is_correct": answerCheck1,
"status": 1
},
{
"text": answerController2.text,
"is_correct": answerCheck2,
"status": 1
},
{
"text": answerController3.text,
"is_correct": answerCheck3,
"status": 1
}
]
},
// 'question_image': {
// 'question_image': questionImage,
// 'type': 'image/',
// }
},
);
await addQuestion.addApiQuestion(
// file,
formData,
widget.quizId,
// context,
);
}and this is my request code:class AddQuestion {
addApiQuestion(
formData,
quizId,
) async {
final String url = apiServer + 'quizzes/exam/$quizId/questions/add/';
try {
var response = await Dio().post(
url,
data: formData,
options: Options(
headers: {
'accept': '*/*',
'Authorization': 'Bearer ${AppHelper().getToken().access}',
'contentType': 'multipart/form-data',
},
),
);
/\We added 302 here as it indicates a redirection response from GET request*
but here it comes from the POST request, so Dio raises an Exception,
so to workaround the problem we considre it as success,
any way it's not the best way to handle this, but it's a workaround\/*
if (response.statusCode == 200 ||
response.statusCode == 201 ||
response.statusCode == 302) {
var message = json.decode(response.statusMessage);
printClassNameWithNumber(runtimeType, lineNumber,
'response of add question message ${response.statusCode.toString()}');
printClassNameWithNumber(runtimeType, lineNumber, 'body $formData');
printClassNameWithNumber(runtimeType, lineNumber, 'body $message');
return message;
} else {
// toastMessage('server error', "", context);
print('Response error code = ${response.statusCode}');
return null;
}
} catch (e) {
print('erro $e');
return null;
}
}
}
March 18, 2021 at 01:21PM by Memo_Adel
https://ift.tt/3txXuDf
reddit
I got DioError [DioErrorType.RESPONSE]: Http status error [400]...
I got when I request this data, I'm using Dio package to send request, I tried to replace the content type with application/json and I checked my...
New post on /r/flutterdev subreddit:
Wrote a post on Creating ListView with data from Firestore!
https://ift.tt/2NsDPVU
March 18, 2021 at 03:13PM by mukhtharcm
https://ift.tt/3eT5CKo
Wrote a post on Creating ListView with data from Firestore!
https://ift.tt/2NsDPVU
March 18, 2021 at 03:13PM by mukhtharcm
https://ift.tt/3eT5CKo
Mukhtharcm
Flutter ListView from Firebase Firestore
Learn How to load a ListView using Data from Firestore
New post on /r/flutterdev subreddit:
Making a Candy Crush-esque Game in Flutter - Part 2
https://youtu.be/A204V7DvG-0
March 18, 2021 at 02:15PM by THKPMatt
https://ift.tt/3vACRIp
Making a Candy Crush-esque Game in Flutter - Part 2
https://youtu.be/A204V7DvG-0
March 18, 2021 at 02:15PM by THKPMatt
https://ift.tt/3vACRIp
YouTube
Flutter Let's Code: Color Collapse - Part 2: Removing Runs
This is the second video in our series on building a sliding puzzle game called Color Collapse.In this video, we add the ability to drag rows and columns aro...
New post on /r/flutterdev subreddit:
Reset password
Hey everybody I hope you all are having a great day. You guys got any good tutorials on how I can create a reset password function? I am using firestore in my firebase does that make a difference than using the realtime database?
March 18, 2021 at 03:45PM by TheQuack69
https://ift.tt/3eS9BqF
Reset password
Hey everybody I hope you all are having a great day. You guys got any good tutorials on how I can create a reset password function? I am using firestore in my firebase does that make a difference than using the realtime database?
March 18, 2021 at 03:45PM by TheQuack69
https://ift.tt/3eS9BqF
reddit
Reset password
Hey everybody I hope you all are having a great day. You guys got any good tutorials on how I can create a reset password function? I am using...
New post on /r/flutterdev subreddit:
Flutter Easy Cart Animation, Barcode Scanner for Web & Co. - 09 - PUB.DE...
https://youtube.com/watch?v=WAYEIcB8nos&feature=share
March 18, 2021 at 04:24PM by syntacops
https://ift.tt/3bZbmAI
Flutter Easy Cart Animation, Barcode Scanner for Web & Co. - 09 - PUB.DE...
https://youtube.com/watch?v=WAYEIcB8nos&feature=share
March 18, 2021 at 04:24PM by syntacops
https://ift.tt/3bZbmAI
YouTube
Flutter Easy Cart Animation, Barcode Scanner for Web & Co. - 09 - PUB.DEV RELEASES
From March 1 to 7 we get many new pub.dev releases. Among them an easy cart animation for your Flutter eCommerce apps, a barcode scanner for Flutter Web, an ...
New post on /r/flutterdev subreddit:
Flutter Tutorial - Search In ListView & Filter ListView With JSON (Johannes Milke)
https://www.youtube.com/watch?v=oFZIwBudIj0
March 18, 2021 at 04:23PM by JohannesMilke
https://ift.tt/3r8cYwp
Flutter Tutorial - Search In ListView & Filter ListView With JSON (Johannes Milke)
https://www.youtube.com/watch?v=oFZIwBudIj0
March 18, 2021 at 04:23PM by JohannesMilke
https://ift.tt/3r8cYwp
YouTube
Flutter Tutorial - Search In ListView & Filter ListView With JSON Data
Let's use Flutter to search in a ListView by loading JSON data from the Internet and let's filter this data in a ListView.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
π 12 Week Flutter Training | hβ¦
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
π 12 Week Flutter Training | hβ¦
New post on /r/flutterdev subreddit:
Hi guys, this is my simple application about robots and skill, I used sqlite, scan and radar chart, I hope you like it π
https://youtu.be/DIYWlT1sm5w
March 18, 2021 at 05:54PM by JorgeSalgado33
https://ift.tt/3r1a642
Hi guys, this is my simple application about robots and skill, I used sqlite, scan and radar chart, I hope you like it π
https://youtu.be/DIYWlT1sm5w
March 18, 2021 at 05:54PM by JorgeSalgado33
https://ift.tt/3r1a642
YouTube
Application Robot Scan Flutter SQLite
Hello,
[Google Store]:
https://play.google.com/store/apps/details?id=com.jashdev.scanapp
[Code Project]:
https://gitlab.com/jorgesalgado33/robotscan
[Library]:
https://flutter.dev/docs/cookbook/persistence/sqlite
https://pub.dev/packages/flutter_radar_chartβ¦
[Google Store]:
https://play.google.com/store/apps/details?id=com.jashdev.scanapp
[Code Project]:
https://gitlab.com/jorgesalgado33/robotscan
[Library]:
https://flutter.dev/docs/cookbook/persistence/sqlite
https://pub.dev/packages/flutter_radar_chartβ¦
New post on /r/flutterdev subreddit:
Flutter Navigator 2.0 - Is it ready yet? - Status update and Analysis of...
https://youtube.com/watch?v=PHD1564GhAs&feature=share
March 18, 2021 at 05:48PM by Pixelreddit
https://ift.tt/3bZhkS7
Flutter Navigator 2.0 - Is it ready yet? - Status update and Analysis of...
https://youtube.com/watch?v=PHD1564GhAs&feature=share
March 18, 2021 at 05:48PM by Pixelreddit
https://ift.tt/3bZhkS7
YouTube
Flutter Navigator 2.0 - Is it ready yet? - Status update and Analysis of Navigator 2.0
#FlutterNavigator 2.0 was a large release for the Navigation API in Flutter in 2020. In my research, I found out that there is not so much acceptance of the ...
New tweet from FlutterDev:
π€π EstΓ£o todos convidados!
Let's go to #FlutterEngage Portugal! Get ready for a Flutter 2 Q&A with @_eseidel.
RSVP β https://t.co/f7Kd6vQ48r pic.twitter.com/TT5LcuOeSDβ Flutter (@FlutterDev) March 18, 2021
March 18, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1372593650123804680
π€π EstΓ£o todos convidados!
Let's go to #FlutterEngage Portugal! Get ready for a Flutter 2 Q&A with @_eseidel.
RSVP β https://t.co/f7Kd6vQ48r pic.twitter.com/TT5LcuOeSDβ Flutter (@FlutterDev) March 18, 2021
March 18, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1372593650123804680
Twitter
#flutterengage hashtag on Twitter
See Tweets about #flutterengage on Twitter. See what people are saying and join the conversation.
New post on Flutter Dev Google group:
Helps in Maps - Dart
1. Hi guys, I was Studying and I came across this code, I didnβt understand it very well, can someone help me to leave it in the standard way? - It is like this: int value =
Helps in Maps - Dart
1. Hi guys, I was Studying and I came across this code, I didnβt understand it very well, can someone help me to leave it in the standard way? - It is like this: int value =
New post on /r/flutterdev subreddit:
Flutter localization on the Fly
I was told to add localization to an app in production at my workplace I did and it helped us reach more users but we found it painful and struggled with the old school approach of every time making changes in the code, Incase we wanted to add a new language or make any changes to localization.
So I came up with a simple solution that helped me solve this problem.Here in this post-https://maheshmnj.medium.com/flutter-localization-on-the-fly-34799d8f08df, I shared my experience of how I tackled this problem without using any third party solution.
March 18, 2021 at 06:13PM by maheshmnj
https://ift.tt/3eQ9aNL
Flutter localization on the Fly
I was told to add localization to an app in production at my workplace I did and it helped us reach more users but we found it painful and struggled with the old school approach of every time making changes in the code, Incase we wanted to add a new language or make any changes to localization.
So I came up with a simple solution that helped me solve this problem.Here in this post-https://maheshmnj.medium.com/flutter-localization-on-the-fly-34799d8f08df, I shared my experience of how I tackled this problem without using any third party solution.
March 18, 2021 at 06:13PM by maheshmnj
https://ift.tt/3eQ9aNL
Medium
Flutter Localization on the Fly
When building mobile apps we don't want the language to be a hindrance for our users, The main goal is always to reach as many users asβ¦
New post on /r/flutterdev subreddit:
Is Angela Yu's Flutter course on Udemy still relevant for Flutter 2.0?
Also, this course is "part of a series". Is the other two courses worth being taken or the course itself will suffice?Thanks for your help
March 18, 2021 at 08:02PM by notpikatchu
https://ift.tt/30VOTOt
Is Angela Yu's Flutter course on Udemy still relevant for Flutter 2.0?
Also, this course is "part of a series". Is the other two courses worth being taken or the course itself will suffice?Thanks for your help
March 18, 2021 at 08:02PM by notpikatchu
https://ift.tt/30VOTOt
Udemy
Online Courses - Anytime, Anywhere | Udemy
Udemy is the world's largest destination for online courses. Discover an online course on Udemy.com and start learning a new skill today.
New post on /r/flutterdev subreddit:
Ep. 015 - Draw an arc | Flutter Processing
https://youtube.com/watch?v=ZgzBHdUp3yI&feature=share
March 18, 2021 at 07:24PM by Pixelreddit
https://ift.tt/3f6Ghx1
Ep. 015 - Draw an arc | Flutter Processing
https://youtube.com/watch?v=ZgzBHdUp3yI&feature=share
March 18, 2021 at 07:24PM by Pixelreddit
https://ift.tt/3f6Ghx1
YouTube
Ep. 015 - Draw an arc | Flutter Processing
Today, we implement arc() in the Flutter port of Processing.
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:
hβ¦
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:
hβ¦
New tweet from FlutterDev:
β¨ Go behind-the-scenes with #DecodingFlutter! β¨
Don't miss the ALL NEW series of videos that aims to demystify, clarify, and explore all the things that are surprising or mysterious about #Flutter, starting soon π
Watch the teaser π https://t.co/WQwGegIRj6 pic.twitter.com/DMFcBOHTe8β Flutter (@FlutterDev) March 18, 2021
March 18, 2021 at 08:00PM
http://twitter.com/FlutterDev/status/1372623847439089668
β¨ Go behind-the-scenes with #DecodingFlutter! β¨
Don't miss the ALL NEW series of videos that aims to demystify, clarify, and explore all the things that are surprising or mysterious about #Flutter, starting soon π
Watch the teaser π https://t.co/WQwGegIRj6 pic.twitter.com/DMFcBOHTe8β Flutter (@FlutterDev) March 18, 2021
March 18, 2021 at 08:00PM
http://twitter.com/FlutterDev/status/1372623847439089668
Twitter
#decodingflutter hashtag on Twitter
7m ago @FlutterDev tweeted: "β¨ What is BuildContext? β¨
And why are t.." - read what others are saying and join the conversation.
And why are t.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Partner Up for Learning
Hello everyone, hope you doing well. I just wanted to share the discord server for the people who search for learning partners. You can join server to find a partner for learning different programming languages or any topics you are interested in. Here is the link for the server:BTW - There is dedicated Flutter channel as wellhttps://discord.gg/ayeGrsaSG2
March 18, 2021 at 08:12PM by heisenbug403
https://ift.tt/3r0hkp1
Partner Up for Learning
Hello everyone, hope you doing well. I just wanted to share the discord server for the people who search for learning partners. You can join server to find a partner for learning different programming languages or any topics you are interested in. Here is the link for the server:BTW - There is dedicated Flutter channel as wellhttps://discord.gg/ayeGrsaSG2
March 18, 2021 at 08:12PM by heisenbug403
https://ift.tt/3r0hkp1
Discord
Join the Partner Up Discord Server!
Check out the Partner Up community on Discord - hang out with 658 other members and enjoy free voice and text chat.
New tweet from FlutterDev:
π₯πFirebase Release Notes for March ππ₯
Join @puf for the latest updates from Firebase, with:
π Null-safe versions of Flutter SDKs
π§ Better ML and faster builds on Android
β± Perfmon SDKs open-sourced
This and more in 4 minutes.
Check it out π https://t.co/E1RBTOrBKG pic.twitter.com/AEy0AGAr0sβ Firebase (@Firebase) March 16, 2021
March 18, 2021 at 09:59PM
http://twitter.com/FlutterDev/status/1372654010663075844
π₯πFirebase Release Notes for March ππ₯
Join @puf for the latest updates from Firebase, with:
π Null-safe versions of Flutter SDKs
π§ Better ML and faster builds on Android
β± Perfmon SDKs open-sourced
This and more in 4 minutes.
Check it out π https://t.co/E1RBTOrBKG pic.twitter.com/AEy0AGAr0sβ Firebase (@Firebase) March 16, 2021
March 18, 2021 at 09:59PM
http://twitter.com/FlutterDev/status/1372654010663075844
Twitter
Frank van Puffelen (@puf) | Twitter
The latest Tweets from Frank van Puffelen (@puf). Firebaser at Google.
Not a French publishing house (see @editions_PUF), although I like books.
Not a pro-wrestler (see @pufisgod), although I like spandex. San Francisco, CA
Not a French publishing house (see @editions_PUF), although I like books.
Not a pro-wrestler (see @pufisgod), although I like spandex. San Francisco, CA
New post on /r/flutterdev subreddit:
Flutter Video Editor (Similar to Instagram)
Hi I am building an app, which needs a story creation feature similar to instagram. How do I create/edit a video with text/Stickers overlays? Any help would be highly appreciated.
March 18, 2021 at 11:09PM by Nishmo_
https://ift.tt/3trX01A
Flutter Video Editor (Similar to Instagram)
Hi I am building an app, which needs a story creation feature similar to instagram. How do I create/edit a video with text/Stickers overlays? Any help would be highly appreciated.
March 18, 2021 at 11:09PM by Nishmo_
https://ift.tt/3trX01A
reddit
Flutter Video Editor (Similar to Instagram)
Hi I am building an app, which needs a story creation feature similar to instagram. How do I create/edit a video with text/Stickers overlays? Any...
New post on /r/flutterdev subreddit:
Quick Poll - What app UI template would you want?
Hey everybody, I've been working on flutterui.design and am constantly wondering what type of app template developers would be most interested in next.So I've created this quick poll. Please comment if you have another idea!View Poll
March 18, 2021 at 10:26PM by Apallon
https://ift.tt/30ZZPKQ
Quick Poll - What app UI template would you want?
Hey everybody, I've been working on flutterui.design and am constantly wondering what type of app template developers would be most interested in next.So I've created this quick poll. Please comment if you have another idea!View Poll
March 18, 2021 at 10:26PM by Apallon
https://ift.tt/30ZZPKQ