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

gen_license: Command line tools to generate a license file
pub: https://pub.dev/packages/gen_licensegithub: https://github.com/woodemi/gen_licenseFeedbacks and contributions are welcome

November 24, 2020 at 01:38PM by sunbreakwang
https://ift.tt/3m7k6Yc
New post on /r/flutterdev subreddit:

App Feedback Thread - November 24, 2020
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

November 24, 2020 at 01:33PM by AutoModerator
https://ift.tt/2V34j0h
New post on /r/flutterdev subreddit:

Automatically generate the code needed for json_serializable and jaguar_serializer and automatically run the flutter pub run build_runner build -delete-conflicting-outputs command. Makes developing flutter even easier!
Automatically generate the code needed for json_serializable and jaguar_serializer and automatically run the flutter pub run build_runner build -delete-conflicting-outputs command. Makes developing flutter even easier!GitHub๏ผšhttps://github.com/LuodiJackShen/AutoJsonPlugin๏ผšhttps://plugins.jetbrains.com/plugin/11600-autojson

November 24, 2020 at 01:21PM by Ok_Pea_2331
https://ift.tt/3fvWtpK
New post on /r/flutterdev subreddit:

A gesture-unlocking widget for Flutter that supports a high degree of customization.
if u like it, please click the little star on Github, tks!Git: https://github.com/LuodiJackShen/GesturePasswordWidgetpub:https://pub.dev/packages/gesture_password_widget

November 24, 2020 at 01:13PM by Ok_Pea_2331
https://ift.tt/39d2nuO
New post on /r/flutterdev subreddit:

Best place to learn Flutter to build an app for an internship?
I'm going to begin working on flutter to build an app for an internship. I have no previous experience developing mobile apps. What's the best way to get a basic understanding of flutter so that I am able to complete my weekly tasks?

November 24, 2020 at 03:23PM by the-lion-sin
https://ift.tt/2KC1cux
New post on /r/flutterdev subreddit:

Startup seeking a good flutter developer
Carbonara is an early-stage, high-growth startup on a mission to create a simple, easy, and organized way for popular restaurants to manage waiting guests. Built by former restaurant operators and restaurant software developers, our technology modernizes and streamlines the casual dining experience while allowing restaurants to focus on creating an exceptional experience for their diners.Job FunctionsTakeover development of 1-2 mobile apps written in Flutter. At first, this candidate will own both projects and then will focus as the team growsWork on the development of a platform as part of an international project.Writing automated unit testsCollaborating closely with the teams of UX/UI designers, PMs, QAs, and other developersSet up CI/CD for Flutter projectMinimum requirements include:5+ years of experience in iOS or Android DevelopmentExperience in Developing cross-platform mobile applications for Android (Java/Kotlin) & iOS (Swift/Objective C), or other cross platform frameworks like React Native or Xamarin.Minimum 1-year experience with Flutter or significant project developed using Flutter - we will ask you to show and tell thisUnderstanding and experience with CI/CDExperience with threading, and performance tuningStrong understanding of the full mobile development lifecycleGood understanding of Xcode, Android Studio and VSCode.An understanding of Material Design and Cupertino, rich motion APIs, smooth natural scrolling, and platform awareness for flutter.Solid understanding of best practices in mobile UX design and experience working with UX designers a mustEffective English written and verbal communication skillsIdeally, you also:Have already worked in a tech role where your decisions were of great importanceHave experience leading a tech teamAre certain that you can recruit people via your existing network to join our teamWhat we can offer:A competitive salary and shares in the companyOpportunity to build and work on a product that is already in use and will be used by millions of peopleDynamic and flexible working conditionsAn international, friendly and highly motivated teamAbout UsWeโ€™re a small and motivated team of expats living in Oslo, Norway. Our founder is an American who built a prior restaurant software startup and has vast experience building teams and raising investment.We work hard, often late hours, but we believe in work-life balance, and we make sure to get away from our screens and take a walk from time to time. We are an international team building an international company, and we know it takes all types to build a great organization.CarbonaraApp.comAre you interested?Please send your CV and a brief note as to why you think youโ€™d be a good fit for the role to [info@carbonaraapp.com](mailto:info@carbonaraapp.com) . Bonus points if you tell us your favorite restaurant and why you like it.

November 24, 2020 at 03:01PM by booleantoggle
https://ift.tt/2UW8V8v
New post on /r/flutterdev subreddit:

Stateless Widget and Stateful Widget in Flutter-The Ultimate Guide
https://easilyknowit.com/stateless-and-statefull-widget/

November 24, 2020 at 05:51PM by easily_know_it
https://ift.tt/39dep7q
New post on /r/flutterdev subreddit:

i need to change url from notification and show in InAppWebView
Hello everyone, i am call the method in initState and this is work if open app without notification ( open google website ) and in onResume work ( open twitter website ) , but in onLaunch not working can any one help me or any idea ?class content_page extends StatefulWidget {
dynamic url;content_page(this.url);u/override
_content_pageState createState() => _content_pageState();
}class _content_pageState extends State<content_page> {
//https://dev.azkarna.com/webview.html
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
InAppWebViewController controller;
double progress = 0;
bool t = false;u/override
void initState() {
super.initState();
if (Platform.isAndroid) {
AndroidNotification();
}
}u/override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: setContent(widget.url),
),
);
}// ignore: missing_return
Widget setContent(String url) {
if (Platform.isAndroid) {
print('third url is : $url');
return Container(
child: Stack(
children: <Widget>[
WillPopScope(
onWillPop: _onBack,
child: SafeArea(
child: InAppWebView(
initialUrl: url,
onWebViewCreated:
(InAppWebViewController webViewController) {
controller = webViewController;
},
onLoadStart:
(InAppWebViewController controller, String url) {},
onProgressChanged:
(InAppWebViewController controller, int progress) {
setState(() {
this.progress = progress / 100;
});
},
),
),
),
Align(alignment: Alignment.center, child: _buildProgressBar()),
],
),
);
}
}this is callback for notification :void AndroidNotification() {print('first flag : $t');
_firebaseMessaging.configure(
onResume: (message) async {
setState(() {
widget.url = 'www.twitter.com';
controller.loadUrl(url: widget.url);
t = true;
});
},
onLaunch: (message) async {
setState(() {
widget.url = 'www.facebook.com';
controller.loadUrl(url: widget.url);
t = true;
});}, // min 13 in video https://www.youtube.com/watch?v=xeY-c2nM3lQ
);
if (t == true) {
return;
} else if (t == false) {
widget.url = 'www.google.com';
}
}

November 24, 2020 at 06:20PM by muhammadAlshelleh
https://ift.tt/3l2jX71
New tweet from FlutterDev:

๐Ÿ‘ We want YOUR feedback!

Fill out this user survey so we can learn how to improve Flutter, and make it an even better tool for you.

๐Ÿ–Š๏ธ Take the survey here &rarr; https://t.co/xDLqQiINnB pic.twitter.com/29Yip3lC4Vโ€” Flutter (@FlutterDev) November 24, 2020

November 24, 2020 at 07:04PM
http://twitter.com/FlutterDev/status/1331297616706068484
New post on /r/flutterdev subreddit:

Flutter Buddies discord server is launching new community features: Flutter Talks and Mass Monthly Meetups
You may or may not have heard of us, we launched Flutter Buddies from this sub just over a month ago. Flutter Buddies is a community on discord that has a focus on being actively engaged in the community by getting together in small groups via live audio chats weekly to showcase our projects, learn flutter together, get to know other Flutter devs, coding together, work on group projects, helping each other find jobs, and much more.I have seen this group of developers grow to almost 700 and there's definitely an active group of people here devoted to the community that I would call friends.Anyways, about our new community features:"Flutter Talks", a regularly scheduled one to many or few to many edutainment event with a short presentation being given by one or few fellow Flutter Buddies right on our discord server. You can learn from our speakers about a variety of flutter topics and even ask questions. Topics like UI practice, developing in various platforms, state management, architecture, IDE tricks, widgets, packages and more!"Mass Monthly Meetups" join a large organized group meetup on the last Friday of every month at 18:00 UTC right here on the server.Our discord invite is forwarded from our vanity url http://flutterbuddies.com

November 24, 2020 at 08:35PM by joeyda3rd
https://ift.tt/3l2DSTl
New post on /r/flutterdev subreddit:

Custom Timer โŒ›
Hi guys! I recently publish custom_timer package โŒ› It helps to easily build a highly customizable timer builderโšก๏ธ Main features:Timer controller (start, pause and reset).Custom duration, interval and actions.Any feedback would be great! ๐ŸคฉPub: https://pub.dev/packages/custom_timerGitHub: https://github.com/federicodesia/custom_timer

November 24, 2020 at 09:02PM by federicodesia
https://ift.tt/3nTxsYp
New post on /r/flutterdev subreddit:

Code Fields ๐Ÿ”ข
Hi guys! I recently publish code_fields package ๐Ÿ”ข It helps to easily build code fields with customization options. It can be useful for OTP and other verification methods.โšก๏ธ Main features:Automatically focuses the next field on typing, and focuses the previous field on deletation.Default cursor support.Form validation and default error message.Any feedback would be great! ๐ŸคฉPub: https://pub.dev/packages/code_fieldsGitHub: https://github.com/federicodesia/code_fields

November 24, 2020 at 08:58PM by federicodesia
https://ift.tt/2HxMq6V
New post on /r/flutterdev subreddit:

How do you implement dynamic SVGs in your Apps? Rive, Lottie, flutter_svg?
I'm looking to implement a fairly complex set of svg interactions / animations, and searching around Rive seems to be the most popular option.However after trying to look at their documentation I can say that it get's the prize for the worse docs I've ever seen.Looks like they changed from flare to rive but I can't even find where to use the old flare editor.What option do you recommend?

November 24, 2020 at 08:56PM by GelDeAveia
https://ift.tt/2KEnDPJ
New tweet from FlutterDev:

๐Ÿ‘๐Ÿ‘
๐Ÿ‘ Give these #AdoptaWidget champions a big round of applause for improving documentation.

๐Ÿ† @obitodarky
๐Ÿ† @ChinuKabi
๐Ÿ† @Sameeerkashyap
๐Ÿ† @tsvillain
๐Ÿ† @abdullahzakir99

See each contribution below &darr;โ€” Flutter (@FlutterDev) November 24, 2020

November 24, 2020 at 10:34PM
http://twitter.com/FlutterDev/status/1331350520309563393