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

How would you go about programaticaly generating an image?
I am trying with an idea in my head that involves creating random scene images. Example, i click a button and the code generates a random cartoonish forest scene, say a couple trees, a path, and maybe a deer. Each time i click, it creates a new image. The scene could be anything, forest, desert, urban, etc.The only way I have come up with is to have a boatload of png images and load them in static places on the blank image. There would have to be predefined "spits" to place them. There would also have to be specific images for backgrounds and ground level.Is there a better way to do this?This does not have to be in flutter, open to other ideas. Unity could potentially work for this somehow as well

August 10, 2021 at 06:15PM by rdh24
https://ift.tt/3lS08mW
New post on /r/flutterdev subreddit:

Is GetX still recommended over bloC or other?
I am not certain between GetX and BloC. Since the use of Cubits and tons of good examples in the BloC docs, I learnt to love it more and more. But the use of GetX is more intuitive and easy to learn and to use. It's also a micro framework with other nice features. Several months ago, the GetX package was unstable and not recommended by most developers, what about now? Are the promises true that GetX has a faster state management / builder than other options?We started building a production app and now tempting to switch to BloC, because of Cubits and easy implementations of unit tests.

August 10, 2021 at 10:03PM by d3vm4n8
https://ift.tt/2X7rrPA
New post on /r/flutterdev subreddit:

Looking for Flutter developers 0-3 years experience
HiWe are a start up and building a book reading app with tons of functionality. Our prototype is in progress and we are looking for a front end developer with experience in flutter 0-3 years to join our teamIf the right candidate has no experience in flutter but wish to learn they can also welcome to apply. Interns are also considered. You can send your resume on careers@bridgewatertechnology.comLook forward to itCheers

August 11, 2021 at 12:24AM by Vineyrt
https://ift.tt/3s4Ute4
New post on /r/flutterdev subreddit:

Looking for a flutter dev to partner with
We've got some brilliant ideas, we're looking for a developer to partner with.

August 11, 2021 at 12:15AM by helloguy1010
https://ift.tt/3jG4H0V
New post on /r/flutterdev subreddit:

"The argument type 'String?' can't be assigned to the parameter type 'Object'.",
Hero(tag:sources[index].id,)with red underline

August 11, 2021 at 06:46AM by LibraryNo6908
https://ift.tt/3CBQ9rA
New post on /r/flutterdev subreddit:

Reactive Programming Using RxDart For Flutter Applications - Part 1
https://ift.tt/3izK5b7

August 11, 2021 at 07:47AM by maria_garcia20
https://ift.tt/3yJPtOQ
New post on /r/flutterdev subreddit:

Started with the Flutter but there's an error with the Gradle while running the project on the AVD manager
FAILURE: Build failed with an exception.​* What went wrong:Could not open settings generic class cache for settings file 'C:\Users\rudra\AndroidStudioProjects\testing_app\android\settings.gradle' (C:\Users\rudra\.gradle\caches\6.7\scripts\1fnwrr8g4rohfp291nvlxj5qe).> BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 60​* Try:Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.​* Get more help at https://help.gradle.org​BUILD FAILED in 5sException: Gradle task assembleDebug failed with exit code 1

August 11, 2021 at 09:55AM by rudraksh_karpe
https://ift.tt/2VLjgrR
New post on /r/flutterdev subreddit:

Just started learning Flutter and created a mobile application for my college.
The name of app is TietInfo. The app is made for the students who are either in college or are willing to join the college. The app is available on google play store.Google Play Store Link: https://play.google.com/store/apps/details?id=com.smartherd.tietinfoGithub Link: https://github.com/raghav-kapahi/tietinfo

August 11, 2021 at 09:36AM by Stunning-Algae-7145
https://ift.tt/3ALaTvB
New post on /r/flutterdev subreddit:

Which MacBook for Flutter Dev?
I am currently checking the various types of MacBooks because I will get one to develop and test iOS Flutter apps. Which model do you recommend and why? What are the best-suited models for this?Currently, I am thinking about getting the 13" Apple M1 Chip with 8-Core CPU and 8-Core GPU 512GB Storage, would that be sufficient?

August 11, 2021 at 12:56PM by HerryKun
https://ift.tt/3jK1A85
New post on /r/flutterdev subreddit:

[Multiplatform] A `multiplatform-project` generator for Flutter APP/plugin/federated-plugin
Thanks to mason, I've come up with the missing template-generator for multiplatform Flutter APP/plugin, especially federated-pluginhttps://github.com/woodemi/quick_flutter.brick
$ mason make quick_flutter --project myapp ✓ Made brick quick_flutter (0.2ms) ✓ Generated 125 file(s): ... $ ls myapp/ README.md lib pubspec.lock web android linux pubspec.yaml windows ios macos test 


August 11, 2021 at 03:21PM by sunbreakwang
https://ift.tt/3lTenrr
New post on /r/flutterdev subreddit:

Dynamic theme in my app. What do you think?
Imgur videoThis is inspired by the material you design.I used the packages: flutter_staggered_animations, adaptive_theme and rubber.

August 11, 2021 at 05:00PM by 123456789101112136
https://ift.tt/3iCD9tV
New post on /r/flutterdev subreddit:

How do you test an App's appearance in dark theme?
Having tried using Widget Tests [testWidgets()] to test an app's appearance in dark theme, it still doesn't work: Here's what I tried:
void main() { testWidgets("Test that the app renders properly in 'Dark Theme'.", (WidgetTester tester) async { await tester.pumpWidget( MaterialApp( theme: ThemeData.dark(), home: RegistrationHomePage(), ), ); final Finder loginTextFinder = find.text("Welcome to the app."); final Text loginText = tester.firstWidget(loginTextFinder); expect( WelcomeText.style.color, Colors.green.shade900, reason: 'While the system dark is dark theme, the text color should be dark green', ); }); } 
For some reason, I can't get the test suite to test the app with the theme set to dark theme.

August 11, 2021 at 06:43PM by nwokologodwin
https://ift.tt/3lUWJDS