New post on /r/flutterdev subreddit:
Utility widget which writes notifications into event sink
https://ift.tt/2YXP9fy
July 03, 2020 at 07:18PM by lesnitsky_a
https://ift.tt/2BZY5Z9
Utility widget which writes notifications into event sink
https://ift.tt/2YXP9fy
July 03, 2020 at 07:18PM by lesnitsky_a
https://ift.tt/2BZY5Z9
GitHub
lesnitsky/notifications_stream
Utility widget which writes notifications into stream - lesnitsky/notifications_stream
New post on /r/flutterdev subreddit:
How strictly do you follow your architecture in Flutter?
Say for example, the architecture is something likeView (UI)View model (state management, with provider and change notifier, for example)Services (the "logic" of your app)In short, the View is what the user sees. Any interactions, such as button clicks can be caught by the Vide model. The View model tells the Service, and may or may not receive data back. The View model, in turn may send this data back to the view. I learned of this from FilledStacks.How strictly do you (or are you able to) follow such architecture?Sometimes, having 3 of the above layers seems overkill. You can get away by just using the view and the view model.In some cases, I feel that the view model is not required to sit between the View and Services. For example, my authentication service:
July 03, 2020 at 07:35PM by pyboy10000
https://ift.tt/3irp4NH
How strictly do you follow your architecture in Flutter?
Say for example, the architecture is something likeView (UI)View model (state management, with provider and change notifier, for example)Services (the "logic" of your app)In short, the View is what the user sees. Any interactions, such as button clicks can be caught by the Vide model. The View model tells the Service, and may or may not receive data back. The View model, in turn may send this data back to the view. I learned of this from FilledStacks.How strictly do you (or are you able to) follow such architecture?Sometimes, having 3 of the above layers seems overkill. You can get away by just using the view and the view model.In some cases, I feel that the view model is not required to sit between the View and Services. For example, my authentication service:
class AuthenticationService { Future<User> currentUser() {} Future<void> register(email, password) {} Future<void> login(email, password) {} Future<void> logout() {} } // (I can access an instance of this class or use a service locator like get_it if I need it as a singleton) // final authService = AuthenticationService();When I have something like this authentication service, I feel that the View model isn't required. I can just put the login or register functions inside my View.Another similar example is when I just want to get some data from a database and display it in the View. In my service, I'm also caching the results so I don't read the database too many times:
class DatabaseService { List _dataCache; Future<List> getData() { // return _dataCache if it is not null // otherwise, get the data from the database } }This is also one of the cases where the View model may not be required, as I can directly access the service inside my widget's build method (with FutureBuilder). Should I still use a View model in this case?
July 03, 2020 at 07:35PM by pyboy10000
https://ift.tt/3irp4NH
reddit
How strictly do you follow your architecture in Flutter?
Say for example, the architecture is something like * View (UI) * View model (state management, with provider and change notifier, for example) *...
New post on /r/flutterdev subreddit:
Cinema UI Flutter || Check out this amazing video.
https://youtu.be/uLqf5ReQZow
July 03, 2020 at 10:33PM by Admirable_Ad6745
https://ift.tt/3glJkyw
Cinema UI Flutter || Check out this amazing video.
https://youtu.be/uLqf5ReQZow
July 03, 2020 at 10:33PM by Admirable_Ad6745
https://ift.tt/3glJkyw
YouTube
Cinema 【App UI/UX】 || Flutter
Source Code:
http://raboninco.com/1ENM6
http://raboninco.com/1ENM6
New post on /r/flutterdev subreddit:
auto_route: 0.6.0 The simplest declarative routing solution for flutter
https://ift.tt/2VKEQtt
July 03, 2020 at 10:59PM by Milad_Alakarie
https://ift.tt/2NWIjk8
auto_route: 0.6.0 The simplest declarative routing solution for flutter
https://ift.tt/2VKEQtt
July 03, 2020 at 10:59PM by Milad_Alakarie
https://ift.tt/2NWIjk8
New post on /r/flutterdev subreddit:
#Hack20: Stream 6 - Closing Ceremony - Winners Announcement
https://www.youtube.com/watch?v=AeFk1aBVh-Q&feature=share
July 03, 2020 at 11:17PM by Pixelreddit
https://ift.tt/3gqD6O0
#Hack20: Stream 6 - Closing Ceremony - Winners Announcement
https://www.youtube.com/watch?v=AeFk1aBVh-Q&feature=share
July 03, 2020 at 11:17PM by Pixelreddit
https://ift.tt/3gqD6O0
YouTube
#Hack20: Stream 6 - Closing Ceremony - Winners Announcement
Check out all projects and winners on http://flutterhackathon.com/
New post on /r/flutterdev subreddit:
Simple Calculator for Rookies IOS-STYLE || Flutter
https://youtu.be/hG1LtnE8RcU
July 03, 2020 at 11:12PM by Admirable_Ad6745
https://ift.tt/3gk74D2
Simple Calculator for Rookies IOS-STYLE || Flutter
https://youtu.be/hG1LtnE8RcU
July 03, 2020 at 11:12PM by Admirable_Ad6745
https://ift.tt/3gk74D2
YouTube
Calculator 【IOS style】|| Flutter
Source Code :
http://raboninco.com/1Eb5J
http://raboninco.com/1Eb5J
New post on /r/flutterdev subreddit:
Package:async (Package of the Week)
https://www.youtube.com/watch?v=r0tHiCjW2w0&feature=share
July 03, 2020 at 11:06PM by Pixelreddit
https://ift.tt/2YWYV1R
Package:async (Package of the Week)
https://www.youtube.com/watch?v=r0tHiCjW2w0&feature=share
July 03, 2020 at 11:06PM by Pixelreddit
https://ift.tt/2YWYV1R
YouTube
Package:async (Package of the Week)
If you're coding with Dart, you've probably used the SDK's built in async support for things like Streams. Did you know there's also an async package, with a bunch of useful additions?
Learn more about dart:async → https://goo.gle/3e09czd
This video…
Learn more about dart:async → https://goo.gle/3e09czd
This video…
New post on Flutter Dev Google group:
Bottom Navigation with a List Screen in Flutter
Hello everyone, I have created a bottom navigation bar on my app and edited it the way I found it appropriate. I have 4 items (Home page, messages, settings, profile). My next task is to add a list screen on my home page. Something like Instagram has, only without the pictures (just info). Is
July 03, 2020 at 11:12PM by Renato Mutavdzic
https://ift.tt/3iptN2y
Bottom Navigation with a List Screen in Flutter
Hello everyone, I have created a bottom navigation bar on my app and edited it the way I found it appropriate. I have 4 items (Home page, messages, settings, profile). My next task is to add a list screen on my home page. Something like Instagram has, only without the pictures (just info). Is
July 03, 2020 at 11:12PM by Renato Mutavdzic
https://ift.tt/3iptN2y
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Convert Image to PNG in flutter_web?
I've got an app that's drawing a complex graphic using a CustomPaint. I would like to be able to offer the user the ability to download the graphic as a PNG (or, really, any device-independent image format). I can capture the graphic using a PictureRecorder and invoke the recorder's endRecording
July 03, 2020 at 11:46PM by Stephen Beitzel
https://ift.tt/38qsJqt
Convert Image to PNG in flutter_web?
I've got an app that's drawing a complex graphic using a CustomPaint. I would like to be able to offer the user the ability to download the graphic as a PNG (or, really, any device-independent image format). I can capture the graphic using a PictureRecorder and invoke the recorder's endRecording
July 03, 2020 at 11:46PM by Stephen Beitzel
https://ift.tt/38qsJqt
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter Fire progress update
https://ift.tt/31JmZGX
July 04, 2020 at 12:14AM by n1x0nj4
https://ift.tt/3iv8blx
Flutter Fire progress update
https://ift.tt/31JmZGX
July 04, 2020 at 12:14AM by n1x0nj4
https://ift.tt/3iv8blx
GitHub
FlutterFire Roadmap · Issue #2582 · FirebaseExtended/flutterfire
Hey all 👋 Today I’m excited to announce the upcoming changes and roadmap for the FlutterFire plugins. The overall mission of FlutterFire is to provide a set of high quality set of plugins for devel...
New post on /r/flutterdev subreddit:
How to solve Flutter overflow problems?
https://youtu.be/I0plb3_RJ6o
July 04, 2020 at 01:24AM by thehappyharis
https://ift.tt/2YWIkuP
How to solve Flutter overflow problems?
https://youtu.be/I0plb3_RJ6o
July 04, 2020 at 01:24AM by thehappyharis
https://ift.tt/2YWIkuP
YouTube
How to solve Flutter overflow problems?
👉 Pre Sign Up to Flutter Learning Platform :
https://learncodecode.com/fluter-learning-platform
🔥 Check out my courses - https://zukunf.com/courses
🎨 Source code:
https://stackoverflow.com/questions/51997936/flutter-listview-overflow
⏰ Timeline:
00:00…
https://learncodecode.com/fluter-learning-platform
🔥 Check out my courses - https://zukunf.com/courses
🎨 Source code:
https://stackoverflow.com/questions/51997936/flutter-listview-overflow
⏰ Timeline:
00:00…
New post on /r/flutterdev subreddit:
I made a responsive app for Android iOS and Web
I just wanted to share a little project I have been working as an excuse to learn how to make an Android iOS and Web app with one Flutter codebase that is responsive enough to look good on larger displays such as tablets. All the code is on Github for you to critique 😂 https://github.com/AssistantSMSiOS: https://apps.apple.com/us/app/id1519215611Android: https://play.google.com/store/apps/details?id=com.kurtlourens.scrap_mechanicWeb: https://scrapassistant.comI wanted to make a Youtube video on how this app was made from the beginning, but OBS kept messing with my Visual Studio and eventually I stopped recording 😅. Feel free to ask me questions! Also let me know what I could have done better 😁I wanted to publish to Amazon App Store and F-Droid as well. But Amazon App Store has been far more difficult to deal with than even Apple. And I struggled a lot with F-Droid 😂. So I stuck with the the 3 major platforms.
July 04, 2020 at 01:05AM by KhaozNess
https://ift.tt/3gmPqyG
I made a responsive app for Android iOS and Web
I just wanted to share a little project I have been working as an excuse to learn how to make an Android iOS and Web app with one Flutter codebase that is responsive enough to look good on larger displays such as tablets. All the code is on Github for you to critique 😂 https://github.com/AssistantSMSiOS: https://apps.apple.com/us/app/id1519215611Android: https://play.google.com/store/apps/details?id=com.kurtlourens.scrap_mechanicWeb: https://scrapassistant.comI wanted to make a Youtube video on how this app was made from the beginning, but OBS kept messing with my Visual Studio and eventually I stopped recording 😅. Feel free to ask me questions! Also let me know what I could have done better 😁I wanted to publish to Amazon App Store and F-Droid as well. But Amazon App Store has been far more difficult to deal with than even Apple. And I struggled a lot with F-Droid 😂. So I stuck with the the 3 major platforms.
July 04, 2020 at 01:05AM by KhaozNess
https://ift.tt/3gmPqyG
GitHub
Assistant for Scrap Mechanic
Apps centered around the game Scrap Mechanic. Assistant for Scrap Mechanic has 4 repositories available. Follow their code on GitHub.
New post on /r/flutterdev subreddit:
Flutter Switch Animated📱 Subscribe👍
https://youtu.be/tjhF6iHT38c
July 03, 2020 at 08:43PM by maherban530
https://ift.tt/31JI58u
Flutter Switch Animated📱 Subscribe👍
https://youtu.be/tjhF6iHT38c
July 03, 2020 at 08:43PM by maherban530
https://ift.tt/31JI58u
YouTube
Flutter |10| Animated Switch
WELCOME
We will tell you Flutter, Dart, Widget, animated switch etc in this channel.
Flutter |1| Bottom AppBar:https://youtu.be/BTrNnHLCq-4
Flutter |2| Page Selector:https://youtu.be/-yEX470jOh4
Flutter |3| Opacity:https://youtu.be/kX7uyJ_3srg
Flutter…
We will tell you Flutter, Dart, Widget, animated switch etc in this channel.
Flutter |1| Bottom AppBar:https://youtu.be/BTrNnHLCq-4
Flutter |2| Page Selector:https://youtu.be/-yEX470jOh4
Flutter |3| Opacity:https://youtu.be/kX7uyJ_3srg
Flutter…
New post on /r/flutterdev subreddit:
Sign Up with Phone Verification Design App - Flutter UI - Speed Code
https://www.youtube.com/watch?v=QBwLJKbCIlo
July 03, 2020 at 09:27PM by AllAboutFlutter
https://ift.tt/31JI8RI
Sign Up with Phone Verification Design App - Flutter UI - Speed Code
https://www.youtube.com/watch?v=QBwLJKbCIlo
July 03, 2020 at 09:27PM by AllAboutFlutter
https://ift.tt/31JI8RI
YouTube
Sign Up with Phone Verification Design App - Flutter UI - Speed Code
Nice, clean and modern Sign Up with Phone Verification Design App UI in Flutter
Inspiration
https://dribbble.com/shots/11990239-Sign-up-with-Phone-Verification-iOS-Mobile-App-Senz
💻 GitHub Source Code
https://github.com/gerfagerfa/phone_verification
IMPORTANT:…
Inspiration
https://dribbble.com/shots/11990239-Sign-up-with-Phone-Verification-iOS-Mobile-App-Senz
💻 GitHub Source Code
https://github.com/gerfagerfa/phone_verification
IMPORTANT:…
New post on /r/flutterdev subreddit:
FlutterPage (UI/UX)
https://www.instagram.com/flutteranimations/?igshid=qk3250jxri5n
July 04, 2020 at 02:56AM by Admirable_Ad6745
https://ift.tt/3iuYJP2
FlutterPage (UI/UX)
https://www.instagram.com/flutteranimations/?igshid=qk3250jxri5n
July 04, 2020 at 02:56AM by Admirable_Ad6745
https://ift.tt/3iuYJP2
New post on /r/flutterdev subreddit:
Cinema (UI/UX) - Flutter [SourceCode: https://ift.tt/38rgslV]
https://www.youtube.com/watch?v=uLqf5ReQZow
July 04, 2020 at 03:32AM by Admirable_Ad6745
https://ift.tt/3gmh0fq
Cinema (UI/UX) - Flutter [SourceCode: https://ift.tt/38rgslV]
https://www.youtube.com/watch?v=uLqf5ReQZow
July 04, 2020 at 03:32AM by Admirable_Ad6745
https://ift.tt/3gmh0fq
meriabub.net
GitHub - zeyan-ansari/cinema-app-UI-flutter
Contribute to zeyan-ansari/cinema-app-UI-flutter development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Calculator IOS-Style || Flutter
https://www.youtube.com/watch?v=hG1LtnE8RcU
July 04, 2020 at 03:15AM by Admirable_Ad6745
https://ift.tt/31PmI5k
Calculator IOS-Style || Flutter
https://www.youtube.com/watch?v=hG1LtnE8RcU
July 04, 2020 at 03:15AM by Admirable_Ad6745
https://ift.tt/31PmI5k
YouTube
Calculator 【IOS style】|| Flutter
Source Code :
http://raboninco.com/1Eb5J
http://raboninco.com/1Eb5J
New post on Flutter Dev Google group:
Sensor Service
hello guys, I tried to build an application to count the steps (via plugin "Pedometer"),, but I find a big problem during the generation of the application. when i use an android smartphone version more than version 7 it does not work but with version 7- it works correctly. I have consult that
July 04, 2020 at 05:39AM by Hamza AYADA
https://ift.tt/2BuGCYW
Sensor Service
hello guys, I tried to build an application to count the steps (via plugin "Pedometer"),, but I find a big problem during the generation of the application. when i use an android smartphone version more than version 7 it does not work but with version 7- it works correctly. I have consult that
July 04, 2020 at 05:39AM by Hamza AYADA
https://ift.tt/2BuGCYW
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Recoil: State Management for Today's React
https://www.youtube.com/watch?v=_ISAA_Jt9kI
July 04, 2020 at 10:14AM by fluthien
https://ift.tt/2NWwTwR
Recoil: State Management for Today's React
https://www.youtube.com/watch?v=_ISAA_Jt9kI
July 04, 2020 at 10:14AM by fluthien
https://ift.tt/2NWwTwR
YouTube
Recoil: State Management for Today's React - Dave McCabe aka @mcc_abe at @ReacteuropeOrgConf 2020
We present an approach to state management that scales from a single component to highly complex apps. This boilerplate-free system makes it easy to support browser history and URLs and to manage asynchronous data dependencies, and works with modern React…
New post on /r/flutterdev subreddit:
Getting data from Google Sheets into the Flutter app 💙 by @imShreyasPatil
https://ift.tt/3ins11Q
July 04, 2020 at 10:51AM by shreyaspatil99
https://ift.tt/3dXLX8i
Getting data from Google Sheets into the Flutter app 💙 by @imShreyasPatil
https://ift.tt/3ins11Q
July 04, 2020 at 10:51AM by shreyaspatil99
https://ift.tt/3dXLX8i
Medium
Getting data from Google Sheets📊 → Flutter App📱 — Part 2
In this article, We’ll learn to load data from Google Sheets and show it into the list in the Flutter app.
New post on Flutter Dev Google group:
I want to get values from one page to another page...
I'm doing an sms app. I that i want to use the default phone number.. I want to store the number locally in my mobile.So i used path_provider... Here i Want to call the fileContents value as a phone number value which is in next page for sms purpose.. Can you suggest me how to call the fileConten
July 04, 2020 at 11:56AM by Abinavan Nagendran
https://ift.tt/31JpdX9
I want to get values from one page to another page...
I'm doing an sms app. I that i want to use the default phone number.. I want to store the number locally in my mobile.So i used path_provider... Here i Want to call the fileContents value as a phone number value which is in next page for sms purpose.. Can you suggest me how to call the fileConten
July 04, 2020 at 11:56AM by Abinavan Nagendran
https://ift.tt/31JpdX9
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.