Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New post on /r/flutterdev subreddit:

What is _body in this dart file? Beginning app development in Flutter by Rob Payne Chapter 11
I am reading beginning app development in Flutter by Rap Payne and have no clue what body: _body is in line 29 is and then Widget get _body in line 44 here: https://github.com/rapPayne/beginning-app-development-with-flutter/blob/master/chapter_11_making_restful_calls_with_ajax/lib/PeopleUpsert.dartIs that a typo? None of the other files in lib folder define _body

August 12, 2021 at 09:05AM by webNoob13
https://ift.tt/3CIAC9J
New post on /r/flutterdev subreddit:

Hi folks, what's your .gitignore for uploading your flutter apps to github. Pls mention if Android Studio or VScode.
​I'm looking to upload a personal project to github for jobseeking purposes. But obviously I need to leave a LOT of stuff out.I can't be the only one, so what do you have in your .gitignore? Please do post it straight in to your replies, so we can have feedback on your choices.And do comment anything you think might need a comment.Here's Andrea Bizzotto's from his starter app (nicely commented, also):
# Miscellaneous *.class *.log *.pyc *.swp .DS_Store .atom/ .buildlog/ .history .svn/ # IntelliJ related *.iml *.ipr *.iws .idea/ # The .vscode folder contains launch configuration and tasks you configure in # VS Code which you may wish to be included in version control, so this line # is commented out by default. .vscode/ # Flutter/Dart/Pub related **/doc/api/ **/ios/Flutter/.last_build_id .dart_tool/ .flutter-plugins .flutter-plugins-dependencies .packages .pub-cache/ .pub/ /build/ # Web related lib/generated_plugin_registrant.dart # Symbolication related app.*.symbols # Obfuscation related app.*.map.json # Android Studio will place build artifacts here /android/app/debug /android/app/profile /android/app/release 


August 12, 2021 at 11:02AM by itsastickup
https://ift.tt/2XmDVmL
New post on /r/flutterdev subreddit:

Nike app ui with flutter
https://youtube.com/shorts/s_S8w8HZ-0I?feature=share

August 12, 2021 at 11:43AM by base77
https://ift.tt/3gfK3Uz
New post on /r/flutterdev subreddit:

HTML Richtext Editor
I created a simple and lightweigt HTML editor for Richtext in Flutter. You can check it out at https://github.com/herrytco/Flutter-HTML-Editor - what do you think? Should I extend the features further? Should I put it in a package on pub.dev?

August 12, 2021 at 01:16PM by HerryKun
https://ift.tt/3yT9ylu