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
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
reddit
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...
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 images
March 24, 2021 at 12:09PM by ANDRUXUIS
https://ift.tt/3lLR4O9
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 images
class 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
reddit
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 images `class...
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
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
Mukhtharcm
Create a project with Custom Package Name in Flutter
Quick tip on How to create a Flutter project with custom package Name
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
_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
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 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
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
en.bigpixel.cn
Shanghai Lujiazui
195 gigapixel,195 Billion pixels,Shanghai Lujiazui,bigpixel,gigapixel,panorama,giga pixel
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
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
reddit
Should you learn Flutter or Android Native, if you don't plan to...
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...
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
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
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 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
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 /r/flutterdev subreddit:
Monetize your Flutter Apps with Google Ads
https://ift.tt/3tO5XT0
March 24, 2021 at 03:36PM by polilluminato
https://ift.tt/3f9zxOI
Monetize your Flutter Apps with Google Ads
https://ift.tt/3tO5XT0
March 24, 2021 at 03:36PM by polilluminato
https://ift.tt/3f9zxOI
Flutter and Other Experiments
Monetize your Flutter Apps with Google Ads
Hi everyone in this article I want to give you some more information about the recently announced update for Google Ads and Google Ads Manager plugin on Flutter. With this package, you can insert in your app all the supported Ads Format from Google a...
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
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
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:
Is flutter ready for Android TV app development?
Is there any state android TV app already? Did anyone have experience working on Android TV app using flutter?
March 24, 2021 at 04:17PM by bharath_dev
https://ift.tt/3lK2vWP
Is flutter ready for Android TV app development?
Is there any state android TV app already? Did anyone have experience working on Android TV app using flutter?
March 24, 2021 at 04:17PM by bharath_dev
https://ift.tt/3lK2vWP
reddit
Is flutter ready for Android TV app development?
Is there any state android TV app already? Did anyone have experience working on Android TV app using flutter?
New post on Flutter Dev Google group:
DropDown Menu not working
I am trying to make a form and have a dropdown menu in it but it seems to not be working. For reference: myGroups - passed into the widget as an object of Groups groupSelected - an object Groups DropdownButtonFormField
DropDown Menu not working
I am trying to make a form and have a dropdown menu in it but it seems to not be working. For reference: myGroups - passed into the widget as an object of Groups groupSelected - an object Groups DropdownButtonFormField
New tweet from FlutterDev:
💙 Getting started with #Flutter!
In this new series for beginners, you'll learn what Flutter is and how to build your first app with demos, explanations, walkthroughs, code, and more!
There may be cake 🍰✨ → https://t.co/qvKElMqLmC#LearnFlutter pic.twitter.com/9A5VJMyUyw— Flutter (@FlutterDev) March 24, 2021
March 24, 2021 at 06:30PM
http://twitter.com/FlutterDev/status/1374775531313491968
💙 Getting started with #Flutter!
In this new series for beginners, you'll learn what Flutter is and how to build your first app with demos, explanations, walkthroughs, code, and more!
There may be cake 🍰✨ → https://t.co/qvKElMqLmC#LearnFlutter pic.twitter.com/9A5VJMyUyw— Flutter (@FlutterDev) March 24, 2021
March 24, 2021 at 06:30PM
http://twitter.com/FlutterDev/status/1374775531313491968
Twitter
News about #flutter on Twitter
See news about #flutter on Twitter. Read what people are saying and join the conversation around this hashtag.
New post on /r/flutterdev subreddit:
How do I make my first Flutter app
https://youtube.com/watch?v=xWV71C2kp38&feature=share
March 24, 2021 at 06:07PM by Pixelreddit
https://ift.tt/2PsZ8Hq
How do I make my first Flutter app
https://youtube.com/watch?v=xWV71C2kp38&feature=share
March 24, 2021 at 06:07PM by Pixelreddit
https://ift.tt/2PsZ8Hq
YouTube
How do I make my first Flutter app
You’ve got a great idea for an app, but now you’re not really sure where to start. In this series for beginners we’ll show you how to get started with Flutter and teach you how to build your own Flutter app with explanations, demos, and step-by-step examples.…
New post on /r/flutterdev subreddit:
Good Flutter Open Source projects
hey, I'm looking for repositories of flutter projects to read and get more familiar, if you know a project pls let a link.
March 24, 2021 at 07:34PM by buuvelos
https://ift.tt/3fc5c1W
Good Flutter Open Source projects
hey, I'm looking for repositories of flutter projects to read and get more familiar, if you know a project pls let a link.
March 24, 2021 at 07:34PM by buuvelos
https://ift.tt/3fc5c1W
reddit
Good Flutter Open Source projects
hey, I'm looking for repositories of flutter projects to read and get more familiar, if you know a project pls let a link.
New post on /r/flutterdev subreddit:
flutter doctor says Android Studio is not installed but I installed it from the JetBrains toolbox
I have Android Studio installed from the JetBrains Toolbox (mainly because I use a couple of their other IDEs) but flutter doctor says that Android Studio is not installed. I've opened Android Studio and created a test Android application to make sure everything is working and it all seems to be fine.What could the problem be here? I'm running OpenSUSE Tumbleweed with all the latest updates installed. I also have the Flutter and Dart plugins installed for Android Studio.
March 24, 2021 at 11:38PM by CromulentSlacker
https://ift.tt/3lPyxRd
flutter doctor says Android Studio is not installed but I installed it from the JetBrains toolbox
I have Android Studio installed from the JetBrains Toolbox (mainly because I use a couple of their other IDEs) but flutter doctor says that Android Studio is not installed. I've opened Android Studio and created a test Android application to make sure everything is working and it all seems to be fine.What could the problem be here? I'm running OpenSUSE Tumbleweed with all the latest updates installed. I also have the Flutter and Dart plugins installed for Android Studio.
March 24, 2021 at 11:38PM by CromulentSlacker
https://ift.tt/3lPyxRd
reddit
flutter doctor says Android Studio is not installed but I...
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Is pub.dev down now?
We are encountering 502 when trying to access pub.dev
March 25, 2021 at 03:10AM by tranvietha2809
https://ift.tt/3fcTDYr
Is pub.dev down now?
We are encountering 502 when trying to access pub.dev
March 25, 2021 at 03:10AM by tranvietha2809
https://ift.tt/3fcTDYr
reddit
Is pub.dev down now?
We are encountering 502 when trying to access pub.dev
New post on /r/flutterdev subreddit:
Open source flutter projects with tests
Does anyone have any open-source flutter projects with completed tests? I am trying to learn good practices of testing but so far the only resources I have found aren't as adequate for me. So if anyone has any well-tested projects I would really like to read and see how it's done.
March 25, 2021 at 02:25AM by sahvoz31
https://ift.tt/3cj6aYs
Open source flutter projects with tests
Does anyone have any open-source flutter projects with completed tests? I am trying to learn good practices of testing but so far the only resources I have found aren't as adequate for me. So if anyone has any well-tested projects I would really like to read and see how it's done.
March 25, 2021 at 02:25AM by sahvoz31
https://ift.tt/3cj6aYs
reddit
Open source flutter projects with tests
Does anyone have any open-source flutter projects with completed tests? I am trying to learn good practices of testing but so far the only...
New post on /r/flutterdev subreddit:
Why is there only Pdanet+/easytether apps for tethering /hiding tether usage?
With Flutter 2 I'm surprised there hasn't been an attempt to write a tether app. I would love to try and make one but have no idea how to hook into the data aspects of sharing/hiding hotspot/tether usage. Can Dart/Flutter handle that type of data? Tbh I know very little of Dart/Flutter so more info in how to begin this would be helpful. Eventual f-droid support would be incredible too.
March 25, 2021 at 02:17AM by KageOG
https://ift.tt/3ck3Tw1
Why is there only Pdanet+/easytether apps for tethering /hiding tether usage?
With Flutter 2 I'm surprised there hasn't been an attempt to write a tether app. I would love to try and make one but have no idea how to hook into the data aspects of sharing/hiding hotspot/tether usage. Can Dart/Flutter handle that type of data? Tbh I know very little of Dart/Flutter so more info in how to begin this would be helpful. Eventual f-droid support would be incredible too.
March 25, 2021 at 02:17AM by KageOG
https://ift.tt/3ck3Tw1
reddit
Why is there only Pdanet+/easytether apps for tethering /hiding...
With Flutter 2 I'm surprised there hasn't been an attempt to write a tether app. I would love to try and make one but have no idea how to hook...
New post on Flutter Dev Google group:
https://pub.dev/ 502 server error
In China, https://pub.dev/ and https://ift.tt/2H7CSth occur 502 server error flutter pub get get error also plz fix it thx
March 25, 2021 at 03:13AM by Draymond Hu
https://ift.tt/3rk52bs
https://pub.dev/ 502 server error
In China, https://pub.dev/ and https://ift.tt/2H7CSth occur 502 server error flutter pub get get error also plz fix it thx
March 25, 2021 at 03:13AM by Draymond Hu
https://ift.tt/3rk52bs
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 tweet from FlutterDev:
📣✨ #FlutterEngage in UK & Ireland!#FlutterEngage UK & Ireland is happening this Thursday, March 25th 6pm GMT. Join the event for 3 great talks and a Q&A with @timsneath!
RSVP here 👉 https://t.co/EDAWwtmm22 pic.twitter.com/rBJkbNQZkS— Flutter (@FlutterDev) March 25, 2021
March 25, 2021 at 04:00AM
http://twitter.com/FlutterDev/status/1374918967169531904
📣✨ #FlutterEngage in UK & Ireland!#FlutterEngage UK & Ireland is happening this Thursday, March 25th 6pm GMT. Join the event for 3 great talks and a Q&A with @timsneath!
RSVP here 👉 https://t.co/EDAWwtmm22 pic.twitter.com/rBJkbNQZkS— Flutter (@FlutterDev) March 25, 2021
March 25, 2021 at 04:00AM
http://twitter.com/FlutterDev/status/1374918967169531904
Twitter
#flutterengage hashtag on Twitter
See Tweets about #flutterengage on Twitter. See what people are saying and join the conversation.