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

A 4X Strategy Game where you fight smart galactic overlords for Planets
I recently created this game, it is inspired by a flash game I used to play as a kid.Since flash is dead, I tried to recreate something inspired by that game in Flutter.Space Empires 🛸The Universe as we see is in grave danger and big unrest is about to unfold. The world needs a new all-mighty ruler at the helm. Do you think you can take up this spot? Can you defeat these cunning and whip-smart galactic overlords?​From the humble start of 2 newly civilized Planets and a non-existent army to becoming the Supreme Ruler of the Universe, you're in for the adventure of a lifetime in this game of wits.​Expand your Galactic Empire with these amazing features :- Building your Military- Upgrading your Planets and Protecting them- Maintaining Relationship with other Species- Conquering new Planets- Managing your Empire's Economy and Resources​TLDR; Space Empires: A turn-based, Space Themed 4X Strategy Game in Flutter​Note: Attributions and complete game-mechanics explanation are along with the source code on Github.Any suggestions/questions or feedback will be appreciated :)​Check it out here: Play StoreSource Code: GitHub​PS: I found that flash game here :Here is that game: The one I took inspiration from

June 29, 2021 at 12:16PM by Honest-Jackfruit7020
https://ift.tt/3xhlSLy
New post on /r/flutterdev subreddit:

api_cache_manager | Flutter Package
API Cache Manager is a Utility package built with Flutter SDK and SQLite Package. This package will help to make your Rest API store in the local db for offline access.FeaturesOffline Integration of Rest API.Faster Data rendering.Avoid Unnecessary HTTP Get Requests.App will work without Internet also.Speed up the application.Link : https://pub.dev/packages/api_cache_managerVideo Example : https://youtu.be/Vs39uIJqKp4

June 29, 2021 at 02:28PM by K_SNIPPET
https://ift.tt/3jobFZV
New post on Flutter Dev Google group:

Flutter Platform Specific
Hello, I would like to obtain a little bit more specific information relating to Platform Specific for Flutter. I understand that you have to configure the files specially if you want to target them all but is it possible for a flutter application at the moment to fully support Android, IOS,

June 29, 2021 at 04:56PM by Bridget Kelly O'Sheehan
https://ift.tt/2SxXt5q
New post on /r/flutterdev subreddit:

Flutter web production examples
-please post websites made with flutter web in production I want to convince a customer -who has a very tight budget- with flutter web I know it's not the best web framework -yet- , but I mean he is searching for more than a week now just to find someone do his website within his budget which is something impossible Anyway he is gonna do cross-platform app as well so I wanted to do his website -wont take any more money from him- because I will basically do nothing more

June 29, 2021 at 04:52PM by _NullPointerEx
https://ift.tt/2SBek7B
New tweet from FlutterDev:

🔵 Improving platform channel performance 🔵 Read Aaron Clarke's blog for a deep dive into communication between Flutter and its host platform, and what happened when he removed superfluous copies of the data being sent over platform channels. Here 👉 https://t.co/D26qAAhxU2 https://t.co/Y272zqbXoj— Flutter (@FlutterDev) Jun 29, 2021

June 29, 2021 at 07:00PM
http://twitter.com/FlutterDev/status/1409919603489320963
New post on /r/flutterdev subreddit:

Fpdart, functional programming for dart and flutter, version 0.0.6 released
https://ift.tt/2UoBTkF

June 29, 2021 at 07:32PM by cmprogrammers
https://ift.tt/360oYrr
New post on /r/flutterdev subreddit:

Flutter with Firebase&Stripe Build shop app from scratch - free course from udemy
https://ift.tt/3q3VORk

June 29, 2021 at 07:29PM by Ordinary_Craft
https://ift.tt/2UHbdLQ
New post on Flutter Dev Google group:

What happened to Flutter in Android Studio??
Hi, I'm an ex-C developer, ex-C++ developer, and an ex-C# developer and I just started to look at Flutter and Dart. Part of the instructions I was using told me to download and run Android Studio. The instructions also had a picture of a button entitled: Create Flutter app. When I looked at

June 29, 2021 at 08:58PM by Bill Farrell
https://ift.tt/3jshkOo
New post on /r/flutterdev subreddit:

Rebranding
In trying to promote Flutter within a few organizations I've worked with, I often come across someone who says "oh, this is hybrid technology". And I really don't think that's fair to describe Flutter as a hybrid technology. Hybrid has a bad connotation for various reasons.I feel like we should be referring to Flutter as Flutter Native to convey that Flutter generates native platform targets and isn't simply a solution that embeds webviews.Thoughts?

June 29, 2021 at 08:58PM by utilitycoder
https://ift.tt/2UaaQtc
New tweet from FlutterDev:

👾 Unbounded height / width on #DecodingFlutter You put a ListView in a column and get an error. What do you do now? Catch @filiphracek as he explains why you might be getting this error and how you can fix it. Watch 📺https://t.co/RBQ1Qa4X0k https://t.co/f7VMc0p6B3— Flutter (@FlutterDev) Jun 29, 2021

June 29, 2021 at 09:00PM
http://twitter.com/FlutterDev/status/1409949798808096768
New post on /r/flutterdev subreddit:

Flutter todo app.
Been searching for a whole day and i cant find a simple todo app, which doesn't use firebase, Is there any written or video tutorial which tells how to create todo app with sqflite or anything ? an Updated one would be better, All the tutorials are old.

June 29, 2021 at 10:08PM by opinvader
https://ift.tt/3qAze3c
New post on /r/flutterdev subreddit:

Problem: Push Notifications Flutter
Hello! I am trying to send a push notification (see code below) to User A when User B follows User A, but for some reasons it does NOT work. I am not getting any errors, but I think there is something wrong about my code. Can you please tell me what is wrong or what can be improved about my code? Thanks!home.dart:void initState() {super.initState();FirebaseMessaging messaging = FirebaseMessaging();messaging.requestNotificationPermissions();messaging.configure();messaging.configure(onMessage: (message) {print(message);return;}, onLaunch: (message) {print(message);return;}, onResume: (message) {print(message);return;});messaging.getToken().then((value) => print(value));}functions>index.js:const functions = require('firebase-functions');const admin = require('firebase-admin');admin.initializeApp();​exports.onCreateFollowerNotification = functions.firestore.document('/followers/{userId}/userFollowers/{followerId}').onCreate((snapshot, context) => {console.log('Notification on Follower Created', snapshot.id);const userId = context.params.userId;const followerId = context.params.followerId;const registrationToken = [userId];return admin.messaging().sendToDevice(registrationToken, {notification: {title: followerId,body: '${followerId} is following you',}})});

June 29, 2021 at 10:02PM by Alvaro-99
https://ift.tt/3xY45t0
New post on /r/flutterdev subreddit:

ENC viewer with Flutter
hey, i am an amateur in flutter and dart but i wish to build a Electronic Navigational Chart and i was wondering if you can help me or if possible give me an ENC viewer that has APIs i can use, thank you for your time

June 29, 2021 at 09:46PM by seiifba
https://ift.tt/3jsb49I