Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Flutter Open Source Quiz - Trivia Application : Works on Android, iOS, Web and Desktop
An open source quiz application build with Flutter using OpenTDB API.Source CodeWeb liveTest on Linux

March 24, 2021 at 02:28AM by lohanidamodar
https://ift.tt/3f8BYRN
New post on /r/flutterdev subreddit:

What do you use for error handling or logging?
I was curious if you guys use any tools or software for error handling and remote loggingI needed a way to catch errors on the app and log them on my server for debugging later, but instead of building that myself I wanted to know if there's already existing solutions I can use

March 24, 2021 at 04:45AM by almostrogersimon10
https://ift.tt/31fG9TD
New post on /r/flutterdev subreddit:

A dropdown box placement and keyboard issue which is annoying but has got ignored since some time.
If in a screen you have a textfield and a dropdown and you click on the text field, the keyboard appears. After that if you click on the dropdown the keyboard disappears and the widgets crawl to bottom of screen. But the dropdown options keep hanging at the initial position instead of crawling back to bottom with the dropdown.Here is an open issue to upvote - https://github.com/flutter/flutter/issues/46676

March 24, 2021 at 05:18AM by motominator
https://ift.tt/2NKiabU
New post on /r/flutterdev subreddit:

Building desktop app using Flutter 2.0
Has anyone used flutter 2.0 for creating desktop app?
If so, are there any obvious advantages?I saw comment on slack group that people experience much higher cpu usage and bigger memory footprint. Has anyone tried?

March 24, 2021 at 09:00AM by draskosaric
https://ift.tt/3sjqoGW
New post on /r/flutterdev subreddit:

Open Source Flutter Doctor App
Hello everyone,I have coded this design in Flutter and uploaded the source code on Githubhttps://github.com/hosain-mohamed/doctor-appThis design was inspired from herehttps://dribbble.com/shots/15332641-Medical-Mobile-AppTell me your opinion, Thanks

March 24, 2021 at 09:57AM by Crafty-Daikon-828
https://ift.tt/3ciVsBo
New post on Flutter Dev Google group:

post request work great in postman but in flutter it gives status code 500 can anyone help me out iam attaching all the stuff
[image: Screenshot (105).png][image: Screenshot (106).png][image: Screenshot (101).png][image: Screenshot (102).png][image: Screenshot (103).png][image: Screenshot (104).png] //post request code //--payload is Map
New post on /r/flutterdev subreddit:

Cloud storage provider for music streaming
As an intro, I'm developing an app with Flutter that has an audio section.I would like to address two subjects.For the moment the audio is stored in the cloud, more specific using Firebase. The main problem is that the pricing is not very supportive when the bandwidth threshold is exceeded. Also, as I discovered, each song is downloaded completely when trying to play it. Therefore, it doesn't matter that I want play 10 seconds or 1 minute of a song, the same traffic is generated. I'm using just_audio package as audio library and I'm wondering if there is a solution to integrate a stream base solution that implies buffering.As I've seen in the debug logs, a HTTP request is sent every time a song (from the cloud) is requested to play. Now, my concerns are that I can't use just_audio for streaming. Is there a cloud solution that fulfills a good compromise between price and bandwidth, even if the song is downloaded entirely each time the play action is required? I'm taking in consideration to develop an offline mode for the audio section, so that each song could be played from the local memory. Even so, it must be a user option, not a by default feature.

March 24, 2021 at 11:54AM by aqrusu
https://ift.tt/3fbBWIS
New post on /r/flutterdev subreddit:

Help me create the best Flutter courses [Survey]
Over at CodeWithAndrea I've been creating Flutter tutorials and courses for some time.Last month I created this post asking if people would be interested in a Flutter animations course, and received very encouraging responses.To take things forward and make sure I create the right content for you all, I'm now sharing a quick survey.This only takes a few minutes to complete, and your input will be very valuable:https://code-with-andrea-flutter-survey.paperform.co/By completing the survey you can also opt-in to get a sneak peek at my upcoming animations course, along with exclusive updates and discounts.If you're interested in this or just want to help, please complete the survey (note: this will close on Tuesday 30th of March).Thank you very much for your input. Your answers will be truly valuable and I will read them all!

March 24, 2021 at 11:35AM by bizz84
https://ift.tt/39b6KFJ
New post on /r/flutterdev subreddit:

Salaries
Hey there,I am 17 years of age and currently enrolled in a school program where I work 4 days a week (as a flutter dev) and go to school for 1 day a week. Currently I earn little, because of restrictions on the school program. But next year I will probably get a real contract because the school program will be over, around how much would I earn then? I am living in Belgium, Europe.

March 24, 2021 at 12:39PM by Yaro_V
https://ift.tt/3rinbGy
New post on /r/flutterdev subreddit:

List<Widget> is not assignable to type {Widget Class}
Hi I'm using carousel_slide package in flutter and I have the my widget ChpaterPages that implement a FutureBuilder to fetch some imagesclass ChapterPages extends StatelessWidget {
final Future<Map<String, dynamic>> _imageList;
ChapterPages(this._imageList);
final PageController _controller = PageController(
initialPage: 0,
);
u/override
Widget build(BuildContext context) {
return FutureBuilder(
future: this._imageList,
builder: (context, snapshot) {
// in case of the http request failed
if (snapshot.hasError)
return Center(
child: Column(
children: [
Icon(
Icons.signal_cellular_connected_no_internet_4_bar_outlined,
color: Colors.white,
size: 33.0,
),
Text('Connections Lost')
],
));
// in case of success (which's I like it to be)
else if (snapshot.hasData)
return snapshot.data["chapters"]
.map<Widget>(
(imgSrc) => InteractiveViewer(
child: Image.network(
imgSrc,
loadingBuilder: (context, child, loadingProgress) {
if (loadingProgress != null)
return CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(
Colors.deepPurple));
return child;
},
)),
)
.toList();
return CircularProgressIndicator();
});
}
}and when I use the it in the carousel_slide@override
Widget build(BuildContext context) {
return CarouselSlider(
items: ChapterPages(this._pagesList),but in the items part give me an error :The argument type 'ChapterPages' can't be assigned to the parameter type 'List<Widget>'what should I do to fix that ?

March 24, 2021 at 12:09PM by ANDRUXUIS
https://ift.tt/3lLR4O9
New post on /r/flutterdev subreddit:

Wrote a post on how to create project with custom package name! I know this is well known, but in case there is anyone who don't know
https://ift.tt/31dIgHv

March 24, 2021 at 01:26PM by mukhtharcm
https://ift.tt/3tJyKIi
New post on Flutter Dev Google group:

_TypeError (type 'String' is not a subtype of type 'int')
Hi, I have created a list for testing purposes in an app that I am developing. However, when I try to open the page and call the list I get the below error. Can someone please advise ? [image: Screenshot 2021-03-24 190106.png]

March 24, 2021 at 02:31PM by Ameya Paranjape
https://ift.tt/3rjC7nR
New post on Flutter Dev Google group:

How To View Big Pixel Images in flutter app
for example : https://ift.tt/2ssaosg i want to view this kind of image in flutter. How to do that??

March 24, 2021 at 03:05PM by Ruwan Sampath
https://ift.tt/3tKBEMQ
New post on /r/flutterdev subreddit:

Should you learn Flutter or Android Native, if you don't plan to have iOS app in the near future, at least for the next 1 year?
My goal is to build a Push-To-Talk app (a chat app, but with voice, and half-duplex).​Currently I use React Native since I have basic knowledge of the React library. The problem is the JavaScript bridge, the JS frame drops to 10 when the client receives an audio message.​What I am lacking:Proper knowledge of writing an android native module (necessary, because the app requires to play the audio immediately, so I have to write at least 2 android native module, one for the WebSocket manager, one for the audio manager), actual problems:I wrote AAC encoder and AAC decoder, the audio is truncated.I have not learn Dart, yet. The learning curve is higher for me.​In the end:I am going to need to learn the proper way to write a Android Native Module.​If you were me, considering the time you have is about 18 hours per week for 1,5 years. Which are you going to choose?FlutterAndroid Native

March 24, 2021 at 03:12PM by kidfromtheast
https://ift.tt/3fi7Enw
New post on Flutter Dev Google group:

windows-uwp
Which version is supported? Windows (UWP) (desktop) • windows-uwp • windows-uwp-x64 • Microsoft Windows [version 10.0.19042.870] (*unsupported*)

March 24, 2021 at 03:38PM by Bened
https://ift.tt/3fih7LA
New post on /r/flutterdev subreddit:

Flutter vs React Native - Contact List Demo - Performance & APK Size | Flowkl
https://ift.tt/31eVnIE

March 24, 2021 at 03:58PM by 28harishkumar
https://ift.tt/3vVKfhW
New post on Flutter Dev Google group:

Trying to build a calendar
Hello everyone I'm trying to build an application the user can choose the day he want to make appointment and in the calendar each day is unavailable it will disable , can any one help me for the way to this functionality

March 24, 2021 at 04:52PM by Samar Abdulaziz
https://ift.tt/3vThUsp