Flutter Heroes
26K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

How to use Custom Icons in Flutter
https://ift.tt/3v4amCr

May 23, 2021 at 07:41PM by Rahul Agarwal
https://ift.tt/3wGrr5V
New post on Flutter Dev Google group:

A Written tutorial on Auto Routing in Flutter
https://ift.tt/3f2AnMY

May 23, 2021 at 07:42PM by Rahul Agarwal
https://ift.tt/2T49i38
New post on Flutter Dev Google group:

A written tutorial on Video Feeds Like Facebook in Instagram
https://ift.tt/3hNeGBY

May 23, 2021 at 07:43PM by Rahul Agarwal
https://ift.tt/3u83KSc
New post on Flutter Dev Google group:

Widely Used Image Packages in Flutter
https://ift.tt/3ysK7Yv

May 23, 2021 at 07:44PM by Rahul Agarwal
https://ift.tt/3fdhsPg
New post on /r/flutterdev subreddit:

Flutter/dart units tests with Firestore?
I'm trying to wrap my head around unit tests for my Flutter app that accesses a Firestore database. Should I mock the Firestore database? Or use the Firestore emulator? Or a third way?Sorry for such a broad question. I understand the basic principles of unit testing but not sure how to apply them to frontend business logic that uses a backend database.

May 24, 2021 at 12:52AM by buttonsrtoys
https://ift.tt/3ffltmE
New post on /r/flutterdev subreddit:

How do you learn Flutter ASAP with almost no experience in programming?
I started working part time (Intership) in the Systems department of a company of one of my professors. They needed a Front-end developer and they've been using Flutter for a while.The only experience in programming I have is from courses for HTML, CSS, JS and PHP. I just did the courses and stopped there because I had no time to practice to code on my own.Thing is, I'm getting kinda frustrated trying to learn Flutter, I started reading from the Docs (and this is probably the best method to learn) but I'm not really learning much on how to actually code anything apart from the basics. I even started the Maximilian Schwarzmüller course, but it's outdated and can't even code what he does in the videos because it's giving errors practically everywhere (not just things like RaisedButton, for example, which is deprecated but still can be used, and it gives you a suggestion on what to use instead) and tried even to learn on my own trying to code the excersies, but it's pointless.So, what was your method for learning? Any advice you can give?

May 24, 2021 at 04:21AM by Ch4v3_98
https://ift.tt/3bOFspZ
New post on /r/flutterdev subreddit:

Learning flutter with no iOS experience.
I've been doing android developement for a while now, and flutter looks promising.How do I go about learning flutter if I have zero experience in iOS? Should I first get comfortable with iOS ?

May 24, 2021 at 09:03AM by ifarhanp
https://ift.tt/2Sk3iTN
New post on /r/flutterdev subreddit:

Hi, flutter community, on the 24 of June, I will be speaking at Flutter Global Submit, it’s going to be an advanced topic as most of my talk. You definitely need to see what I have cooked up for you
https://ift.tt/3wHrsGL

May 24, 2021 at 10:59AM by bitsydarel
https://ift.tt/3oHYBzb
New post on Flutter Dev Google group:

: package name must be a '.'-separated identifier list package in.navi.navi
Good evening Flutters, im using "in.navi.navi " as my flutter project package name , i got this error : package name must be a '.'-separated identifier list package in.navi.navi i googled about this error this error comes due to th usage of in as the domain extension , in is a default

May 24, 2021 at 12:48PM by Navaneethan MacAppStudio
https://ift.tt/3vkaRbq
New post on Flutter Dev Google group:

Hello, i need to create pagination
I have created it successfully. but when I load new data in at the end of scroll. it reset the old data, i want to persist the old data as well with new data, here is my code import 'dart:io'; import 'package:flutter/material.dart'; import 'product/products.dart'; import 'package:provider/provide

May 24, 2021 at 01:24PM by Attaullah Khan
https://ift.tt/3viiSxx
New post on Flutter Dev Google group:

What's next after submitting PR
Hey Everyone, So I submitted one Pull Request to flutter repo, I dont know what's next after these? Here is the link to my Pull Request Force user to atleast provide one from initalData or Future in FutureBuilder by agwanyaseen · Pull Request #83093 · flutter/flutter (github.com)
New post on /r/flutterdev subreddit:

PLease Rate my api calling with provider and suggest how can i improve. https://ift.tt/2SkfDHA
Model Classclass BannerModel {BannerModel({this.bannerId,.....this.image});final String bannerId;....​factory BannerModel.fromJson(Map<String, dynamic> json) {return BannerModel(bannerId: json['_id'],bannerTitle: json['show']['showTitle'],.....);}}​Provider Class or Apiclass BannerProvider with ChangeNotifier {bool loading = false;List<BannerModel> _banners = [];List<BannerModel> get banners { return [..._banners]; }getBannerData(context) async {loading = true;_banners = await fetchTask(context);loading = false;notifyListeners();}​fetchTask(context) async {var box = await Hive.openBox(keyHiveBox);var _token = box.get(keyToken);final response = await http.get(Uri.https(baseUrl, 'banners'), headers: {'Content-Type': 'application/json','Accept': 'application/json','Authorization': 'Bearer $_token',});if (response.statusCode == 200) {var data = json.decode(response.body) as List;_banners =data.map<BannerModel>((json) => BannerModel.fromJson(json)).toList();return _banners;}}}Main Classvoid main() async {runApp(MultiProvider(providers: providers,child: MyApp(),));}​List<SingleChildWidget> providers = [ChangeNotifierProvider<UserProvider>(create: (BuildContext context) => UserProvider()),ChangeNotifierProvider<BannerProvider>(create: (BuildContext context) => BannerProvider()),];​class MyApp extends StatelessWidget {// This widget is the root of your application.u/overrideWidget build(BuildContext context) {return MaterialApp(......}​Screenclass MyHomePage extends StatefulWidget {u/override_MyHomePageState createState() => _MyHomePageState();}​class _MyHomePageState extends State<MyHomePage> {​u/overridevoid initState() {​//banner providerfinal _bannerP = Provider.of<BannerProvider>(context, listen: false);_bannerP.getBannerData(context);}u/overrideWidget build(BuildContext context) {final _bannerP = Provider.of<BannerProvider>(context);return SafeArea(....child: _bannerP.loading? MyProgressBar(): ScrollConfiguration(behavior: NoGlowBehavior(),child: SingleChildScrollView(child: _connectionStatus == 'ConnectivityResult.none'? Container(): Column(children: [//Banner CardContainer(margin: EdgeInsets.symmetric(horizontal: 3, vertical: 5),child: CarouselSlider.builder(itemCount: _bannerP.banners.length,options: CarouselOptions(autoPlay: true, height: kBannerHeight, viewportFraction: 1),itemBuilder: (BuildContext context, int index, int realIndex) {return MyBannerWidgets(image: _bannerP.banners[index].image,id: _bannerP.banners[index].showId,);},),),}}}

May 24, 2021 at 02:04PM by Prashant_4200
https://ift.tt/34dKKac
New post on /r/flutterdev subreddit:

Decent machine for Apple development
My workflow has till now involved using Flutter on Windows, Linux (WSL) and Android and now I want to develop for iOS and Mac too. I am familiar with working with Mac through a VM but it is becoming expensive. I'm thinking of purchasing a Mac device. Preferably with M1. My budget is 70,000 INR max. I already have a laptop (Asus Zephyrus G15) for all other work (CAD, designing) and am wondering if the Mac mini 8gb is a good choice for developing with flutter + running an emulator. I will be using anydesk or similar tools when away from home.

May 24, 2021 at 01:45PM by realrk95
https://ift.tt/3vfGP8Y
New post on Flutter Dev Google group:

INCULA E UCCIDE BAMBINI: DANIELE MINOTTI! AVVOCATO PEDOFILO, SATANISTA, SATAN卐AZISTA, MASSON^PIDUISTA, ASSASSINO DI GENOVA, RAPALLO E CRIMINALISSIMO STUDIO LEGALE LISI!
INCULA E UCCIDE BAMBINI: DANIELE MINOTTI! AVVOCATO PEDOFILO, SATANISTA, SATAN卐AZISTA, MASSON^PIDUISTA, ASSASSINO DI GENOVA, RAPALLO E CRIMINALISSIMO STUDIO LEGALE LISI! É DA ARRESTARE L'AVVOCATO CHE RAPISCE, INCULA ED AMMAZZA TANTI BAMBINI: DANIELE MINOTTI (FACEBOOK) DI GENOVA, RAPALLO E

May 24, 2021 at 04:27PM by Andreas Nigg Bank J Safra Sarasin Zurich
https://ift.tt/2Sot9Kh