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

QUIZLET 【UI/UX】 || Flutter
https://youtu.be/jlrz32zdoR0

July 20, 2020 at 11:37AM by Admirable_Ad6745
https://ift.tt/3hiCf27
New post on /r/flutterdev subreddit:

BingWalls - Flutter app which enables you to use Bing image of the day as your Wallpaper on your android devices
Hi guys,Just managed to create my 2nd flutter app. It's called Bingwalls.Features -- Allows full hd (1920x1080) Bing image of the day to be used as wallpaper.- Upcoming Features- ability to download and share the wallpaper locally- automatically change the wallpaper when Bing updates it on their side.Download Links -- here https://github.com/tyagi-saurabh/BingWalls/blob/master/README.mdSource Code- https://github.com/tyagi-saurabh/BingWalls​Thank you all once again for your screen time. You guys rock.

July 20, 2020 at 07:39PM by Sam_Tyagi
https://ift.tt/3jh2lEy
New post on Flutter Dev Google group:

Is there a way to avoid rebuild when using navigation rail?
In my project I'm using navigation rail and in order to switch to different screens I have a list of widgets that I would change the index to to display them. When I change the index I have to set state. In my navigation rail when extended I have a stream that listens to a snapshot. I would like

July 20, 2020 at 07:30PM by Tililweet
https://ift.tt/2ClOAE9
New post on /r/flutterdev subreddit:

Complete Guide To Flutter Project(#100FlutterAppChallenge)
Hey, Everyone!#22ndAppI'm happy to share the update the in Project(Complete Guides to Flutter). Today I had created my 22nd's App, Flutter Pokemon Go Application, this was one of the project on which I had started working 45 days or 50 days back, so today's morning I just though to complete it and push all the commit's. Flutter Pokemon Application is a very intuitive and nice UI and JSON based Application in this we are basically fetching the result from the JSON File to create Card based UI had taken place. For this particular I had referred a YouTube video because the concept were quite new for me, I will put the link of Creator in this post, if found on YouTube.Learnt about the following:[]Widgets created for the UI are like as Card, Hero, Animation, Positioned.2 []Parsed the data using **JSON Decode** which helped to bring the data from the API in the form of List.3 []Map is an data structure which is used for passing it through the function.​As Stated, in the earlier post, I am trying to kept my promise to Reddit Community to push one app everyday. Hope to maintain this continuity till my 100 Apps.Main Repo Link is :https://github.com/irahulcse/A-Complete-Guide-To-FlutteYou can check out the repo: https://github.com/irahulcse/A-Complete-Guide-To-Flutter#022---flutter-pokemon-applicationPlease Star this repo or follow me on GitHub, if you found it interesting. Pls do let me know if you're interested in #contributing towards this project.Discord Id is: rahul_chandra#1150#EveryFlutterAppsCount

July 20, 2020 at 08:00PM by flutterboxinc
https://ift.tt/3eQdgBz
New tweet from FlutterDev:

@CodePen Challenge #3!

Use an implicit animation widget to create your #FlutterPen.

An implicitly animated widget automatically animates changes to its properties. Set a new value by calling setState and watch it animate!

Go! → https://t.co/8bnLQoTq2g pic.twitter.com/aTGSsFQRcf— Flutter (@FlutterDev) July 20, 2020

July 20, 2020 at 07:47PM
http://twitter.com/FlutterDev/status/1285270205510201344
New post on Flutter Dev Google group:

dependOnInheritedWidgetOfExactType fails in test
This is also cross-posted in https://ift.tt/2ZKIENz App runs correctly with *flutter run* With *flutter drive --target=test_driver/main.dart* the call to dependOnInheritedWidgetOfExactType returns null Some

July 20, 2020 at 10:47PM by phil magnuson
https://ift.tt/39gnwlO
New post on /r/flutterdev subreddit:

The best way to start learning to add maps and location markers on flutter
Hello fellas I'm struggling in learning the basic concepts about maps and how to use it with flutter what package to use, the apps I need to build using maps, any resources the useful on explaining this topic very well a youtube channel, medium article anything that is helpful. Please help a bro :)

July 20, 2020 at 11:13PM by HeisenbergZzzz
https://ift.tt/30ugrdg
New post on /r/flutterdev subreddit:

Prism - A Wallpapers app made in Flutter
Prism is a beautiful Wallpapers app which is completely made using Dart on top of Flutter. It contains about 1M+ Wallpapers from sources like WallHaven, Pexels, Unsplash, etc. Also anyone can upload any Wallpaper to it and it would then display in app after reviewing.This app was made by me and my team in about 2 months of development. We used Firebase for the backend. More of the Tech-Stack is explained on GitHub.YouTube - https://youtu.be/CwtoTQxxhgwSource (GitHub) - https://github.com/Hash-Studios/PrismGoogle Play Store - https://play.google.com/store/apps/details?id=com.hash.prismGuys, please give it a try and suggest me any improvement/enhancement tips.✌🏻

July 21, 2020 at 01:19AM by LiquidatorAB
https://ift.tt/2OF76Kb
New post on /r/flutterdev subreddit:

Do you prefer using flutter_bloc or your own implementation of BLoC pattern?
TIA!

July 21, 2020 at 09:01AM by 2reform
https://ift.tt/39hGZlL
New post on /r/flutterdev subreddit:

Best architecture for flutter apps?
Since flutter revolves around widgets, which architecture do you guys think it's best to use with small and large scale apps?

July 21, 2020 at 12:40PM by DeathlyPride
https://ift.tt/2ZLRGdc
New post on /r/flutterdev subreddit:

How to access golang methods in Flutter for desktop (macOS) app?
I have been trying to write a Flutter desktop app which can communicate with golang methods.​Go file:
package main import "C" import "fmt" func PrintHello() { fmt.Print("Hello,World") } func main() {} 
Dart Code:
import 'dart:ffi' as ffi; typedef PrintHello_func = ffi.Void Function(); typedef PrintHello = void Function(); void ffi_test(List<String> arguments) { var path = '/path/to/libhello_ffi.dylib'; final ffi.DynamicLibrary dylib = ffi.DynamicLibrary.open(path); final PrintHello hello = dylib .lookup<ffi.NativeFunction<PrintHello_func>>('PrintHello') .asFunction(); hello(); } 
The execution of the above Flutter code fails with an error:
The following ArgumentError was thrown while handling a gesture: Invalid argument(s): Failed to load dynamic library (dlopen(/path/to/libhello_ffi.dylib, 1): no suitable image found. Did find: file system sandbox blocked open() of '/path/to/libhello_ffi.dylib') 
But it works just fine if I execute the dart directly instead of `flutter run`.​I even tried to create a separate FFI package but unfortunately it failed as well.FFI package name: /my_app/packages/libhello_ffiI placed the `libhello_ffi.dylib` file under /my_app/packages/libhello_ffi/macos directory​Flutter code:
import 'dart:ffi'; import 'dart:io'; final DynamicLibrary _dl = _open(); DynamicLibrary _open() { if (Platform.isMacOS) return DynamicLibrary.executable(); throw UnsupportedError('This platform is not supported.'); } typedef sayhello_C = Void Function(); typedef sayhello_Dart = void Function(); void sayhello() { _dl.lookup<NativeFunction<sayhello_C>>('PrintHello') .asFunction(); } 
​Error:
The following ArgumentError was thrown while handling a gesture: Invalid argument(s): Failed to lookup symbol (dlsym(RTLD_DEFAULT, PrintHello): symbol not found) When the exception was thrown, this was the stack: #0 DynamicLibrary.lookup (dart:ffi-patch/ffi_dynamic_library_patch.dart:31:29) #1 sayhello (package:libhello_ffi/ffi.dart:17:7) #2 LibhelloFfi.sayhello (package:libhello_ffi/libhello_ffi.dart:5:12) #3 ffi_test (package:squash_archiver/features/home/ui/widgets/ffi_test.dart:10:13) #4 _HomeScreenState._buildTestFfi.<anonymous closure> (package:squash_archiver/features/home/ui/pages/home_screen.dart:73:13) #5 _InkResponseState._handleTap (package:flutter/src/material/ink_well.dart:992:19) #6 _InkResponseState.build.<anonymous closure> (package:flutter/src/material/ink_well.dart:1098:38) 
​​There isn't any proper article on the Go and Flutter for Desktop integration available online.Any help will be appreciated.​

July 21, 2020 at 01:47PM by ganeshrnet
https://ift.tt/2OHw3Ey
New post on /r/flutterdev subreddit:

App Feedback Thread - July 21, 2020
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

July 21, 2020 at 02:33PM by AutoModerator
https://ift.tt/30DX29Y
New post on /r/flutterdev subreddit:

I have just published the trailer for "HowFa" Instant Messaging app on youtube. Fully featured messaging app with group-chat features. I will publish the source-code on GitHub very soon.
https://www.youtube.com/watch?v=cP5DuEqPOWo

July 21, 2020 at 02:19PM by olusola_olaoye
https://ift.tt/2OFOnxY
New post on Flutter Dev Google group:

What are the limitations of Flutter when developing and deploying an app that uses an ML model?
Hi, I am new to App development and currently exploring methods to develop apps (primarily Android) that use a Machine Learning Model (preferably __TensorFlow Lite__ ones). I know that Android Studio has a larger community but would like to go for `Dart` instead of `Java`; both languages are

July 21, 2020 at 02:21PM by Prashant Dandriyal
https://ift.tt/3jpmWXf