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

I've implemented design from dribble
I've made my version of https://dribbble.com/shots/6315218-IoT-Humidity-App-SliderThe result: https://github.com/kherel/flutter_fun/blob/master/gifs/humidity_app_res.gifThe code: https://github.com/kherel/flutter_funMaybe it could interesting for someone. I hope you'll like it.

October 06, 2020 at 02:16PM by kherel
https://ift.tt/3ixJjrX
New post on /r/flutterdev subreddit:

App Feedback Thread - October 06, 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

October 06, 2020 at 02:33PM by AutoModerator
https://ift.tt/3iEdVbg
New post on /r/flutterdev subreddit:

Best Flutter Courses, Books, and Free Resources to Master Flutter framework in 2020 | thecodingpie
Hey friends, I have curated a list of the best available online courses, books, and free resources to learn Flutter in 2020.Whether you are getting started or already an intermediate flutter developer, whether you prefer books or online courses, there is something for everyone.You can find the list here on my blog - https://thecodingpie.com/post/top-5-best-courses-to-learn-flutter-in-2020-beginners-intermediates/This list contains both free and paid resources and courses. You will find every single useful flutter resources out there! If you are interested in Flutter then feel free to check this out.I am damn sure these courses will help you to learn the ins and outs of the Flutter framework in no time!If you have any doubts or If you think I had missed any course names then feel free to comment on my blog. Thank you ;)

October 06, 2020 at 03:29PM by thecodingpie
https://ift.tt/34tBONV
New post on /r/flutterdev subreddit:

Generate flutter code from Typescript!!
Build flutter widget from typescript. (general purpose)https://github.com/bridgedxyz/flutter-builderStar it on github if you like it​Here is simple example.​const container = new Container(
{
width: Double.infinity,
height: null,
decoration: new BoxDecoration({
border: Border.all({
color: Color.fromHex("#BBBBBB"),
width: 12
}),
shape: BoxShape.circle,
borderRadius: BorderRadius.only({ topLeft: Radius.circular(12) }),
gradient: new LinearGradients({
colors: [
Color.fromHex("#AAAAAA"),
]
})
}),
}
);
const built = container.build()
// console.log(container)
console.log(built.finalize());​gives youContainer(
width: double.infinity,
height: null,
decoration: BoxDecoration(
border: Border.all(
color: Color(
0xbbbbbb,
),
width: 12,
),
borderRadius: BorderRadius.circular(
topLeft: Radius.circular(
12,
),
),
gradient: LinearGradients(
colors: [
Color(
0xaaaaaa,
),
],
),
shape: BoxShape.circle,
),
);

October 06, 2020 at 03:28PM by softmarshmallow
https://ift.tt/2SsWQqi
New post on Flutter Dev Google group:

Display Network Image in Flutter - EasyFlutter
Released First Article on Flutter Tutorial series. Article: https://ift.tt/3d1V9cE

October 06, 2020 at 04:09PM by Easy Flutter
https://ift.tt/2SydKUg
New post on /r/flutterdev subreddit:

Giveaway: 2x Free Ticket for DroidCon EMEA
I got a lot of useful feedback regards my testing tool from you folks and I want to say thank you!Now I got 2 spare tickets for Thu+Fri this week:
https://www.online.droidcon.com/emea2020First come, first served...

October 06, 2020 at 04:45PM by stoefln
https://ift.tt/3d4QoPR
New post on /r/flutterdev subreddit:

İs flutter enough to build nice look apo
Guys ı want to make app which look very nice. For build nicelook app do ı need to learn another program. Adobe xd or something else. When ı learn flutter and dart can ı do nice look app ?

October 06, 2020 at 05:30PM by Strofex11
https://ift.tt/3nmQKFY
New post on Flutter Dev Google group:

The correct steps of obfuscation toward release version for google app store?
Hi, I need some confirmation from some experts here whether I am doing all correct or not. I am about to publish my app to the google app store. So I followed this link https://ift.tt/3iCODdM. Coming to this step https://ift.tt/33ysKrK

October 06, 2020 at 06:18PM by cargo securitysystems
https://ift.tt/33AFK07
New post on Flutter Dev Google group:

Android emulator fails to connect host on different box
Hi Flutter Community. My Flutter app runs fine w/ iOS. My server is running on different ip (192.168.1.44). When I try running on Android Emulator it fails to connect to that remote server. I have the Android Manifest include ``.

October 06, 2020 at 06:37PM by Barton Hammond
https://ift.tt/3jCvJVE
New tweet from FlutterDev:

📣 Navigator 2.0 and Router add a declarative API 📣

The new API enables more fine-tuned control over screens in your apps, and allows you to parse routes. Find out which Navigator pattern works best for your app!

Start here → https://t.co/wR2qTtjB5J pic.twitter.com/SivPSViHgm— Flutter (@FlutterDev) October 6, 2020

October 06, 2020 at 07:00PM
http://twitter.com/FlutterDev/status/1313524469827342336
New post on Flutter Dev Google group:

Please help. I got issue Play store Missing or invalid testing credentials
What should i do? I use lib background_location to access location. The application will track the user's real-time location, This includes users who are not on the application page. [image: 95232107-41c6d680-082e-11eb-9f47-5a180cc255b9.png]

October 06, 2020 at 08:05PM by Sukit Prachprayoon
https://ift.tt/30GENBv
New post on /r/flutterdev subreddit:

How many only know Dart/Flutter for developing apps?
I'm curious how many members of this community only know Dart/Flutter and no other programming languages.View Poll

October 06, 2020 at 07:38PM by Hoodswigler
https://ift.tt/2GMofkb
New post on /r/flutterdev subreddit:

Using a Stack to cover the entire screen
Most of my screens have a few images like ellipses in the corners and icons etc and overlapping elements. Not all the screen has overlapping elements but a good percentage is and it’s not really proportional like for example the ellipses shape I use in the corner are images but the image obviously is more than just the ellipse since it’s a rectangle or square.So what I decided to do on once screen was to make the entire screen a stack and easily use align to position my elements exactly where I want. This is responsive since align is just using the dimensions of a stack in this case the screen so -1 to 1 and I am also using flutter screen util and when previewing the devices using device preview everything looks good on different screens.The alternative would be to try and create your basic column and row layout but it’s gonna need more configuration and specific positioning while having two stacks in the corners that aren’t really proportional. Is the way I did it fine? Like it works well and is much faster to set up but I’m thinking is this a hacky way of doing things or this is a perfectly fine implementation way of using stack to match my needs?

October 06, 2020 at 08:16PM by shehabs
https://ift.tt/3iCC8i4
New post on /r/flutterdev subreddit:

Flutter payment gateway Integration
Can anyone help me and tell me how can I integrate a payment gateway in a flutter app such as paytm or Google pay

October 06, 2020 at 08:11PM by vedanttripathi
https://ift.tt/33CuJLq
New post on Flutter Dev Google group:

Animating Flutter on higher display refresh rate (90Hz) Android devices.
Hi, Though this is a revisit of https://ift.tt/3nkN8Ey. Wanted to check how the render pipeline signals, and the device display refresh rate are synced. So, the Animator when requesting a frame would wait for the next VSYNC to arrive, https://ift.tt/1iZWPhn

October 06, 2020 at 08:27PM by Sohan Jyoti Ghosh
https://ift.tt/30AF6O4
New post on /r/flutterdev subreddit:

Get frame of a video
Does anyone know how to analize a frame of a video in flutter? , just want to get a frame of the video in real time each second and not a recorded video.

October 06, 2020 at 10:18PM by shacometriODev
https://ift.tt/36FfTpA