Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

🎉 Kickstart your learning journey with #30DaysOfFlutter

Get ready for 30 Days of learning @FlutterDev. Starting Feb 1st, we'll share new code labs and demos, and will host Live AMAs with Flutter Experts.

Sign up → https://t.co/i1k2g54VG5 pic.twitter.com/tU74UEPCo6— Flutter (@FlutterDev) January 26, 2021

January 26, 2021 at 05:25PM
http://twitter.com/FlutterDev/status/1354103094372659201
New post on /r/flutterdev subreddit:

paginate_firestore v0.3.0 now supports real-time data 🎉
Feel free to try and star if you like it.
Github - https://github.com/excogitatr/paginate_firestore
Pub - https://pub.dev/packages/paginate_firestore

January 26, 2021 at 08:05PM by excogitatr
https://ift.tt/39iPLS9
New post on /r/flutterdev subreddit:

Login Error in rest api
i tried to add login system in my flutter application and i use strapi as a backend but when i tried to login its give me the some kind of error and this error are only occure in login part or my signin part is work finei follow this tuts: https://gist.github.com/carzacc/4d53b9664c575c36681d9a535872f926​i just do only some changes accounding the my prefs: pastebin.com/N7TzDtKm​i also check this issue but still i doesn't get any solution: https://github.com/flutter/flutter/issues/27883​Error: Exception has occurred.ClientException (Request to http://10.0.2.2:1337/auth/local/ failed with status 404: Not Found.)​Flutter Doctor -v:​PS G:\Self Project\Flutter\esport_tournamnet> flutter doctor -v[√] Flutter (Channel stable, 1.22.3, on Microsoft Windows [Version 10.0.18363.1256], locale en-GB)• Flutter version 1.22.3 at C:\Src\flutter• Framework revision 8874f21e79 (3 months ago), 2020-10-29 14:14:35 -0700• Engine revision a1440ca392• Dart version 2.10.3​​[√] Android toolchain - develop for Android devices (Android SDK version 30.0.3)• Android SDK at C:\Users\prash\AppData\Local\Android\sdk• Platform android-30, build-tools 30.0.3• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)• All Android licenses accepted.​[!] Android Studio (version 4.1.0)• Android Studio at C:\Program Files\Android\Android StudioX Flutter plugin not installed; this adds Flutter specific functionality.X Dart plugin not installed; this adds Dart specific functionality.• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)​[√] VS Code (version 1.52.1)• VS Code at C:\Users\prash\AppData\Local\Programs\Microsoft VS Code• Flutter extension version 3.18.1​[√] Connected device (1 available)• sdk gphone x86 (mobile) • emulator-5554 • android-x86 • Android 11 (API 30) (emulator)​! Doctor found issues in 1 category.PS G:\Self Project\Flutter\esport_tournamnet>

January 26, 2021 at 07:35PM by Prashant_4200
https://ift.tt/3ppmjj9
New post on /r/flutterdev subreddit:

Filtering fields in sqlite database using date in flutter
Is there any way to filter data in the database by comparing the date

January 26, 2021 at 07:11PM by tluangahauhnar
https://ift.tt/3a7AYsY
New post on /r/flutterdev subreddit:

Push for first class bluetooth support.
I have been working with the flutter_blue library, and it is in shambles. I think for something like bluetooth, flutter should be giving first class support. If you agree....upvote.https://github.com/flutter/flutter/issues/74752

January 26, 2021 at 08:38PM by scorr204
https://ift.tt/39Z9ntG
New post on /r/flutterdev subreddit:

30 Days of Flutter
https://ift.tt/3c8lnfk

January 26, 2021 at 08:59PM by amiculous
https://ift.tt/3ogRSdL
New post on /r/flutterdev subreddit:

Flutter Rooting System
Hi I am new learner and I am working navigation part of flutter.I saw two diffrent ways skipping other page with paramaters.For example I have home page and number page If I send the number data to number page it prints to screen.I can implament this example like this :
Navigator.push(context, MaterialPageRoute(builder: (context) => NumberPage(32)), ); 
Or using
routes: { "/" : (context) => Homepage(), "/NumberPage" : (context) => NumberPage(), }, onGenerateRoute: (RouteSettings settings){ List<String> Itemlist = settings.name.split("/"); if(Itemlist[1] == 'NumberPage'){ return MaterialPageRoute(builder: (context) => NumberPage(int.parse(Itemlist[2]))); } return null; }, 
These are all the ways I know of to do this.Is there any performance difference ?What is the best use case sending data to another page while rooting ?Thanks

January 26, 2021 at 11:41PM by mrfalconx
https://ift.tt/3t1nOWU
New post on /r/flutterdev subreddit:

Gmail-like Drawer Widget Example
https://ift.tt/362qKZC

January 27, 2021 at 04:12AM by tledrag
https://ift.tt/3iQaAYo
New post on Flutter Dev Google group:

Why do built-in widgets carry so much complexity?
This is a UML diagram of the Checkbox widget. I'm wondering why what could be implemented as a CustomPainter or even widgets like a Slider end up with RenderObjectWidgets which seems to really complicate things? As a widget author, what am I gaining by copying these patterns versus using (what I

January 27, 2021 at 04:38AM by James Cook
https://ift.tt/3ablaFH
New post on Flutter Dev Google group:

How to convert List Tiles View to Individual List View in flutter
Hi, How to convert List Tiles View to Individual List View in flutter. I have already retrieved the text items , images and pdfs in vertical card List View or Ui and also List Tiles View. But Now I want to show individual List view when clicked on any item in the List Tiles View.

January 27, 2021 at 06:51AM by shravan kumar Pottala
https://ift.tt/2YgHckP
New post on Flutter Dev Google group:

In Flutter implementing native SDK witihin Kotlin Using the Context.getSystemService(Context.NOTIFICATION_SERVICE) leads to a nullpointer exception
i have a big problem and does not know the answer, maybe someone can help me: I want to include a *third party sdk* into *flutter* which means i created a channel and am currently implementing the native in kotlin code. To get started with the third party sdk i implemented a class which extends

January 27, 2021 at 08:41AM by Bassir Ahmad
https://ift.tt/3ofXMM8
New post on /r/flutterdev subreddit:

Any Code Editor Written in Flutter?
It just comes to my thought when comparing electron and flutter on desktop.

January 27, 2021 at 08:45AM by BasicHome
https://ift.tt/3qZjtl9
New post on /r/flutterdev subreddit:

Fliki (Wiki search app, written in Flutter)
Hello everyone,I'm excited to showcase my new app, Fliki. Fliki is a minimalistic application written in Flutter with loads of features.Features:Added state management (Provider)Caching API responsesAdaptive icons on AndroidLong press to share a result to other apps.History panel to show the last 5 recent searches.Clear history and caches in a single clickToast messages to denote the user if he is seeing the cached data or from APINative Splash screenDynamic Theme support (Persistent)Haptic feedback in some places to improve UXCode: https://github.com/Imgkl/FlikiCheck it out and contributions are always appreciated.

January 27, 2021 at 10:33AM by chif_
https://ift.tt/3pphQwL
New post on /r/flutterdev subreddit:

Trying out Isar database for the first time. Isar vs Moor vs Hive? [LIVE STREAM]
https://ift.tt/2LDOkoy

January 27, 2021 at 11:10AM by uhossein
https://ift.tt/3qVAb4Z
New post on Flutter Dev Google group:

save data without on click process
greetings to all, today i made some cards using text fields and i haven't made the button. now i am a bit curious that can i save the data when i stop writing? i don't know if anyone will understand my question or not, but here I want to work on saving data to firebase when I stop writing and the

January 27, 2021 at 12:53PM by palak pandey
https://ift.tt/2MufEFW
New post on Flutter Dev Google group:

I'm Facing this Error
I shift my channel beta to stable and flutter gives me these errors after running pub get Because levana depends on integration_test any from sdk which doesn't exist (could not find package integration_test in the Flutter SDK), version solving failed. pub get failed (server unavailable) --

January 27, 2021 at 12:54PM by Arslan Raza
https://ift.tt/3oqxWVE