New post on /r/flutterdev subreddit:
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
https://youtube.com/watch?v=gBzlqWzz3Pk&feature=share
July 12, 2021 at 06:52PM by DBestech
https://ift.tt/3wzLemQ
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
https://youtube.com/watch?v=gBzlqWzz3Pk&feature=share
July 12, 2021 at 06:52PM by DBestech
https://ift.tt/3wzLemQ
YouTube
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
Learn about neumorphic design and coding in flutter. Neumorphic buttons are designed for complex ui and 3D buttons. It's also like a 3D design in flutter
With neumorphism design you can make beautiful app ui.
Download the starter code from the below link…
With neumorphism design you can make beautiful app ui.
Download the starter code from the below link…
New post on /r/flutterdev subreddit:
Seeking experiences from splitting an app into multiple packages
I am building a SaaS with thousands of lines of code, and right now every line of code is seperated into different feature folders in the same repo.Now, I want to decouple shared widgets, theme, utilities, repositories etc from the main repo as its going to be easier to reuse, test and maintain. I especially see the value in this as more developers start working on the project, and null-safety migration will be a lot smoother.Does anybody here have some good/bad experiences when it comes to splitting an app into different packages? Should we go for a monorepo or not?Essentially I want the repo of the app itself to only contain feature folders with the widgets/pages and presentation logic unique to them (we are using bloc). Then the blocs will interact with the backend by using a package «appname_data» or «appname_core». And any calculations etc. that are used multiple times throughout the app which doesn’t use third party services/dependencies and isnt tied to specific features will live in «appname_utils».Btw, should we create a single package called «appname_core» or multiple ones like «appname_ui», «appname_utils», «appname_repositories/data»?
July 12, 2021 at 06:22PM by Corthza
https://ift.tt/3k9IEBn
Seeking experiences from splitting an app into multiple packages
I am building a SaaS with thousands of lines of code, and right now every line of code is seperated into different feature folders in the same repo.Now, I want to decouple shared widgets, theme, utilities, repositories etc from the main repo as its going to be easier to reuse, test and maintain. I especially see the value in this as more developers start working on the project, and null-safety migration will be a lot smoother.Does anybody here have some good/bad experiences when it comes to splitting an app into different packages? Should we go for a monorepo or not?Essentially I want the repo of the app itself to only contain feature folders with the widgets/pages and presentation logic unique to them (we are using bloc). Then the blocs will interact with the backend by using a package «appname_data» or «appname_core». And any calculations etc. that are used multiple times throughout the app which doesn’t use third party services/dependencies and isnt tied to specific features will live in «appname_utils».Btw, should we create a single package called «appname_core» or multiple ones like «appname_ui», «appname_utils», «appname_repositories/data»?
July 12, 2021 at 06:22PM by Corthza
https://ift.tt/3k9IEBn
reddit
Seeking experiences from splitting an app into multiple packages
I am building a SaaS with thousands of lines of code, and right now every line of code is seperated into different feature folders in the same...
New post on /r/flutterdev subreddit:
VSCODE Tasks For Flutter Devs
https://ift.tt/3ecYMye
July 12, 2021 at 05:33PM by fredgrott
https://ift.tt/3i0CS2p
VSCODE Tasks For Flutter Devs
https://ift.tt/3ecYMye
July 12, 2021 at 05:33PM by fredgrott
https://ift.tt/3i0CS2p
Medium
VSCODE Tasks For Flutter Devs
In this article, I show how I set up my VSCODE tasks JSON file for Flutter app development.
New post on /r/flutterdev subreddit:
charts_flutter v0.11.0 migrated to null safety after 6 months
https://ift.tt/2U1cRYQ
July 12, 2021 at 05:17PM by Codelessly
https://ift.tt/3kbkNRN
charts_flutter v0.11.0 migrated to null safety after 6 months
https://ift.tt/2U1cRYQ
July 12, 2021 at 05:17PM by Codelessly
https://ift.tt/3kbkNRN
Dart packages
charts_flutter | Flutter Package
Material Design charting library for flutter.
New post on /r/flutterdev subreddit:
TDD in Flutter Part 2: How to write a unit test ?
https://ift.tt/2VAL55Z
July 12, 2021 at 07:32PM by TesteurManiak
https://ift.tt/3yK3k72
TDD in Flutter Part 2: How to write a unit test ?
https://ift.tt/2VAL55Z
July 12, 2021 at 07:32PM by TesteurManiak
https://ift.tt/3yK3k72
New post on /r/flutterdev subreddit:
Vedio player
What is the best vedio library to make flutter vedio player with casting?
July 12, 2021 at 07:26PM by wera_hydra
https://ift.tt/3yRD3Ee
Vedio player
What is the best vedio library to make flutter vedio player with casting?
July 12, 2021 at 07:26PM by wera_hydra
https://ift.tt/3yRD3Ee
reddit
Vedio player
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
problem
hello every one i have a simple question i have gridview.duilder which have different catogries like Samsung catogry, Iphone cateory,huawei Catogory i want when i want to click on samsung they goes to samsung sub catogories... _
July 12, 2021 at 08:16PM by Shahzad Khan
https://ift.tt/3AVHRdl
problem
hello every one i have a simple question i have gridview.duilder which have different catogries like Samsung catogry, Iphone cateory,huawei Catogory i want when i want to click on samsung they goes to samsung sub catogories... _
July 12, 2021 at 08:16PM by Shahzad Khan
https://ift.tt/3AVHRdl
New post on Flutter Dev Google group:
Deleting document and its sub-collections from Firestore Flutter
Hello! I'm trying to delete a post and all its sub-collections. When using the code below, I'm only able to delete all the fields in the post, but NOT the sub-collections it has. *FirebaseFirestore.instance.collection('posts').doc(postId).get().then((doc) {* * if (doc.exists) {* *
July 12, 2021 at 08:30PM by Alvaro Gonzalez Rico
https://ift.tt/3i4Beg3
Deleting document and its sub-collections from Firestore Flutter
Hello! I'm trying to delete a post and all its sub-collections. When using the code below, I'm only able to delete all the fields in the post, but NOT the sub-collections it has. *FirebaseFirestore.instance.collection('posts').doc(postId).get().then((doc) {* * if (doc.exists) {* *
July 12, 2021 at 08:30PM by Alvaro Gonzalez Rico
https://ift.tt/3i4Beg3
New post on /r/flutterdev subreddit:
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
https://youtube.com/watch?v=gBzlqWzz3Pk&feature=share
July 13, 2021 at 03:18AM by DBestech
https://ift.tt/3i1KFNq
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
https://youtube.com/watch?v=gBzlqWzz3Pk&feature=share
July 13, 2021 at 03:18AM by DBestech
https://ift.tt/3i1KFNq
YouTube
Flutter Neumorphic Design | Neumorphic Buttons UI | 3D Design in Flutter
Learn about neumorphic design and coding in flutter. Neumorphic buttons are designed for complex ui and 3D buttons. It's also like a 3D design in flutter
With neumorphism design you can make beautiful app ui.
Download the starter code from the below link…
With neumorphism design you can make beautiful app ui.
Download the starter code from the below link…
New post on /r/flutterdev subreddit:
Introducing Editing Functionality in Flutter DataGrid
https://ift.tt/3hTd6gk
July 13, 2021 at 05:12AM by ArunITTech
https://ift.tt/2VFFSKh
Introducing Editing Functionality in Flutter DataGrid
https://ift.tt/3hTd6gk
July 13, 2021 at 05:12AM by ArunITTech
https://ift.tt/2VFFSKh
Syncfusion Blogs
Introducing Editing Functionality in Flutter DataGrid | Syncfusion Blogs
This blog explains the new editing feature in the Flutter DataGrid that rolled out in the 2021 Volume 2 release along with code examples.
New post on /r/flutterdev subreddit:
Create manga reader app li Tachiyomi
Hello, I want to create an app to read manga by Flutter like Tachiyomi, I'm looking for a package could view zoom pinch big image (about size), display a lot images with lazy load, anyone have experience with the problem, please share me some advice, thank you so much!
July 13, 2021 at 04:42AM by wintery2027
https://ift.tt/3xwDQtP
Create manga reader app li Tachiyomi
Hello, I want to create an app to read manga by Flutter like Tachiyomi, I'm looking for a package could view zoom pinch big image (about size), display a lot images with lazy load, anyone have experience with the problem, please share me some advice, thank you so much!
July 13, 2021 at 04:42AM by wintery2027
https://ift.tt/3xwDQtP
reddit
Create manga reader app li Tachiyomi
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
You Must Read This Flutter CircleAvatar Tutorial - Really Worth It For Beginners
https://ift.tt/3wvK7og
July 13, 2021 at 05:25AM by athira_reddy
https://ift.tt/3ebXEea
You Must Read This Flutter CircleAvatar Tutorial - Really Worth It For Beginners
https://ift.tt/3wvK7og
July 13, 2021 at 05:25AM by athira_reddy
https://ift.tt/3ebXEea
New post on /r/flutterdev subreddit:
Flutter RoadMap for Beginners 2021
https://youtu.be/I11fZRTiXGU
July 13, 2021 at 07:49AM by appmakingco
https://ift.tt/3hWk1Fy
Flutter RoadMap for Beginners 2021
https://youtu.be/I11fZRTiXGU
July 13, 2021 at 07:49AM by appmakingco
https://ift.tt/3hWk1Fy
YouTube
How I Learned Flutter in 30 Days | Flutter Beginners RoadMap 2021 | AppMaking.co
This video, I have shared a strategy ( Flutter RoadMap for beginners 2021) for learning flutter in 30 days or less. This helps you to master flutter in short-time.
🤗 Signup to Free Flutter Beginner Course: https://appmaking.co
Fluter Roadmap (Flutter Beginners…
🤗 Signup to Free Flutter Beginner Course: https://appmaking.co
Fluter Roadmap (Flutter Beginners…
New post on /r/flutterdev subreddit:
Understanding and Animating Stuff using HeroWidget
https://ift.tt/3AZvsVG
July 13, 2021 at 07:32AM by williammcfall
https://ift.tt/3kbVkbd
Understanding and Animating Stuff using HeroWidget
https://ift.tt/3AZvsVG
July 13, 2021 at 07:32AM by williammcfall
https://ift.tt/3kbVkbd
Medium
Understanding and Animating Stuff using HeroWidget
Learn basics to advanced stuff of HeroWidget
New post on /r/flutterdev subreddit:
Using stacks and positioning images slightly outside of their underlying containers to create a nifty floating/popout effect in Part 3 of my beginner-friendly Flutter series
https://www.youtube.com/watch?v=d2xEbeeVyWk
July 13, 2021 at 08:14AM by Azarro
https://ift.tt/3yVNN4r
Using stacks and positioning images slightly outside of their underlying containers to create a nifty floating/popout effect in Part 3 of my beginner-friendly Flutter series
https://www.youtube.com/watch?v=d2xEbeeVyWk
July 13, 2021 at 08:14AM by Azarro
https://ift.tt/3yVNN4r
YouTube
Flutter E-Store Tutorial Part 3 | Headphone Banner Stack, Architecture
In Part 3 of our beginner-friendly tutorial series about implementing an e-store home screen mockup in Flutter, we take a look at
1) Refactoring our previous code a little bit,
2) Organizing our app and creating some basic project structure and architecture…
1) Refactoring our previous code a little bit,
2) Organizing our app and creating some basic project structure and architecture…
New post on /r/flutterdev subreddit:
What are the best design patterns suited for Flutter & Dart?
MVVM, MVC, BLOC ?
July 13, 2021 at 11:02AM by DoctorCode8
https://ift.tt/3yUGJ7Q
What are the best design patterns suited for Flutter & Dart?
MVVM, MVC, BLOC ?
July 13, 2021 at 11:02AM by DoctorCode8
https://ift.tt/3yUGJ7Q
reddit
What are the best design patterns suited for Flutter & Dart?
MVVM, MVC, BLOC ?
New post on /r/flutterdev subreddit:
Indexed Stack Basics Need to Know in Flutter
https://www.youtube.com/watch?v=8h1-gGOWynE&t=1s
July 13, 2021 at 10:28AM by Dhanraj_Flutterdev
https://ift.tt/3kgYCK7
Indexed Stack Basics Need to Know in Flutter
https://www.youtube.com/watch?v=8h1-gGOWynE&t=1s
July 13, 2021 at 10:28AM by Dhanraj_Flutterdev
https://ift.tt/3kgYCK7
YouTube
Flutter Indexed Stack Basics | Flutter Tutorials | Flutter Dash
An Indexed Stack is a stack where only one component is shown at one time by its index. A Stack that shows a solitary child from a list of children. The showed child is the one with the given index. The stack is consistently just about as large as the biggest…
New post on /r/flutterdev subreddit:
BlackHole: An Open Source Music Player App
https://ift.tt/39axndM
July 13, 2021 at 12:28PM by sangwan_5688
https://ift.tt/3yPRsR8
BlackHole: An Open Source Music Player App
https://ift.tt/39axndM
July 13, 2021 at 12:28PM by sangwan_5688
https://ift.tt/3yPRsR8
GitHub
GitHub - Sangwan5688/blackhole
Contribute to Sangwan5688/blackhole development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Localize Your App | How to use Easy Localization package? @YazeedAlKhalaf
https://www.youtube.com/watch?v=cposNqIsyAY
July 13, 2021 at 12:15PM by YazeedAlKhalaf
https://ift.tt/3kdKSA2
Localize Your App | How to use Easy Localization package? @YazeedAlKhalaf
https://www.youtube.com/watch?v=cposNqIsyAY
July 13, 2021 at 12:15PM by YazeedAlKhalaf
https://ift.tt/3kdKSA2
YouTube
How to use Easy Localization package? | Flutter
I am Yazeed AlKhalaf 🚀
I 💙 Programming, especially Flutter
Code on GitHub link: https://github.com/YazeedAlKhalaf/easy_localization_example
Package: https://pub.dev/packages/easy_localization
Commands I ran:
flutter pub run easy_localization:generate …
I 💙 Programming, especially Flutter
Code on GitHub link: https://github.com/YazeedAlKhalaf/easy_localization_example
Package: https://pub.dev/packages/easy_localization
Commands I ran:
flutter pub run easy_localization:generate …
New post on /r/flutterdev subreddit:
Better Logging in Flutter with Loggy Library
https://ift.tt/3ebkOkU
July 13, 2021 at 01:21PM by itsJoKr
https://ift.tt/3hDl1zq
Better Logging in Flutter with Loggy Library
https://ift.tt/3ebkOkU
July 13, 2021 at 01:21PM by itsJoKr
https://ift.tt/3hDl1zq
Infinum
Better Logging in Flutter with Loggy Library
Never again overlook critical messages.