New post on /r/flutterdev subreddit:
Flutter installation on Linux (Manjaro) not working
I've tried to get Flutter (for Android development) running. But it's a nightmare. Do you have any tips? Is there a working Docker image or something similar where everything is setup?
March 01, 2022 at 04:45PM by BlancII
https://ift.tt/av5Z6kV
Flutter installation on Linux (Manjaro) not working
I've tried to get Flutter (for Android development) running. But it's a nightmare. Do you have any tips? Is there a working Docker image or something similar where everything is setup?
March 01, 2022 at 04:45PM by BlancII
https://ift.tt/av5Z6kV
reddit
Flutter installation on Linux (Manjaro) not working
I've tried to get Flutter (for Android development) running. But it's a nightmare. Do you have any tips? Is there a working Docker image or ...
New post on /r/flutterdev subreddit:
Figma2Flutter Beta - Converts Figma design to Flutter widgets (custom painted vector paths)
https://ift.tt/CxB9Tcm
March 01, 2022 at 09:45PM by semantifier
https://ift.tt/lXnFZkr
Figma2Flutter Beta - Converts Figma design to Flutter widgets (custom painted vector paths)
https://ift.tt/CxB9Tcm
March 01, 2022 at 09:45PM by semantifier
https://ift.tt/lXnFZkr
Bostonux
BostonUX Figma2Flutter
Figma Community plugin which helps Flutter TM developers to generate the UI directly from Figma design.
New tweet from FlutterDev:
📢 Want to receive news, opportunities, and resources for the Black community in tech? Sign up to the mailing list → https://t.co/Kgx1YbVr30 #BlackTechTwitter https://t.co/e4VDdPcDtX— Flutter (@FlutterDev) Mar 1, 2022
March 01, 2022 at 11:00PM
https://twitter.com/FlutterDev/status/1498780165178105858
📢 Want to receive news, opportunities, and resources for the Black community in tech? Sign up to the mailing list → https://t.co/Kgx1YbVr30 #BlackTechTwitter https://t.co/e4VDdPcDtX— Flutter (@FlutterDev) Mar 1, 2022
March 01, 2022 at 11:00PM
https://twitter.com/FlutterDev/status/1498780165178105858
New post on /r/flutterdev subreddit:
Does flutter_riverpod support something like this out the box?
Noticed you have to create an army of final variables to reference to the ref.watch method which can grow quickly. So I wrote the following, but i'm wondering if this solution is already supported out the box (and where can I find it) and if not can this be improved any?
March 02, 2022 at 12:55AM by SaltTM
https://ift.tt/lZ6wFJK
Does flutter_riverpod support something like this out the box?
Noticed you have to create an army of final variables to reference to the ref.watch method which can grow quickly. So I wrote the following, but i'm wondering if this solution is already supported out the box (and where can I find it) and if not can this be improved any?
class ProviderCollection<T> { final Map<dynamic, dynamic> _items = {}; void add<T>(dynamic name, ProviderListenable<T> provider) { if (name is! String && name is! Enum) { throw Exception("Name must be of type String or Enum"); } _items[name] = provider; } T get<T>(dynamic name) { return _items[name]; } }Example:
final providerStack = ProviderStack() ..add<Counter>("counter", ChangeNotifierProvider((_) => Counter(0))) ..add<int>("counter2", StateProvider((ref) => 0)); void main() { runApp( const ProviderScope( child: App(), ), ); } class App extends StatelessWidget { const App({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp( title: "Example", home: HomeScreen(), ); } } class HomeScreen extends ConsumerWidget { const HomeScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context, WidgetRef ref) { StateController<int> t = ref.watch(providerStack.get("counter2").state); // Counter t = ref.watch(providerStack.get("counter")); return Scaffold( appBar: AppBar( title: const Text("Hello"), ), body: Container( child: Center( child: Text('Counter ${t.state}'), // child: Text('Counter ${t.count}'), ), ), floatingActionButton: FloatingActionButton( onPressed: () { t.state++; // t.updateCount(); }, ), ); } } class Counter extends ChangeNotifier { int count; Counter(this.count); void updateCount() { count++; notifyListeners(); } }
March 02, 2022 at 12:55AM by SaltTM
https://ift.tt/lZ6wFJK
reddit
Does flutter_riverpod support something like this out the box?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Flutter Localization / Multi-Language Tutorial
https://youtube.com/watch?v=QYNQBBc67JU&feature=share
March 02, 2022 at 03:26AM by dickyrey
https://ift.tt/tKrqbso
Flutter Localization / Multi-Language Tutorial
https://youtube.com/watch?v=QYNQBBc67JU&feature=share
March 02, 2022 at 03:26AM by dickyrey
https://ift.tt/tKrqbso
YouTube
Flutter Localization / Multi-Language Tutorial with flutter_bloc
#flutter #tutorial #localization
Localization is the process of making your app available to other locales. It includes parameters that define the user's language, region and specific variant. By implementing localization in your flutter application, your…
Localization is the process of making your app available to other locales. It includes parameters that define the user's language, region and specific variant. By implementing localization in your flutter application, your…
New post on /r/flutterdev subreddit:
Pub.dev auto dark mode
I made a dark css theme for pub.dev (userstyles.org)Changes automatically depending on the theme of the systemBut there is an option to force a dark themeThe theme itself: https://userstyles.org/styles/231195/auto-dark-pub-devGithub: https://github.com/SergeShkurko/pub.dev-darkOn github all additional information with links to browser extensions and installation instructions (And showcase)
March 02, 2022 at 06:09AM by SergeShkurko
https://ift.tt/qCrvbLk
Pub.dev auto dark mode
I made a dark css theme for pub.dev (userstyles.org)Changes automatically depending on the theme of the systemBut there is an option to force a dark themeThe theme itself: https://userstyles.org/styles/231195/auto-dark-pub-devGithub: https://github.com/SergeShkurko/pub.dev-darkOn github all additional information with links to browser extensions and installation instructions (And showcase)
March 02, 2022 at 06:09AM by SergeShkurko
https://ift.tt/qCrvbLk
Dart packages
The official repository for Dart and Flutter packages.
Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter and general Dart programs.
New post on /r/flutterdev subreddit:
Is there anyway to code with flutter android studio on a figma design, and please don't tell me that i have to use flutter ui because i don't have the time to code the design again.
Actually it's a university project where the groupe was divided into two binomes, one for design and one for coding, the binome design chose to work with figma, and it's the coding turn and it's been a while we since we were trying to code again and we have no time to do the design with flutter ui. Thank you.
March 02, 2022 at 05:54AM by infp812
https://ift.tt/kqIgOev
Is there anyway to code with flutter android studio on a figma design, and please don't tell me that i have to use flutter ui because i don't have the time to code the design again.
Actually it's a university project where the groupe was divided into two binomes, one for design and one for coding, the binome design chose to work with figma, and it's the coding turn and it's been a while we since we were trying to code again and we have no time to do the design with flutter ui. Thank you.
March 02, 2022 at 05:54AM by infp812
https://ift.tt/kqIgOev
reddit
Is there anyway to code with flutter android studio on a figma...
Actually it's a university project where the groupe was divided into two binomes, one for design and one for coding, the binome design chose to...
New post on /r/flutterdev subreddit:
Testing In Flutter: Widget Test
https://ift.tt/a9E25FB
March 02, 2022 at 05:51AM by Red_Star25
https://ift.tt/WJhoipI
Testing In Flutter: Widget Test
https://ift.tt/a9E25FB
March 02, 2022 at 05:51AM by Red_Star25
https://ift.tt/WJhoipI
Dhruv Nakum
Testing In Flutter: Widget Test
What is a Widget test? What are pumpWidget(), pump() & pumpAndSettle()? How to test smaller widgets in Isolation?
New post on /r/flutterdev subreddit:
Open source logging tool
Hi, I'm looking for open source logging tools for logging error on cloud, please suggest. TIA
March 02, 2022 at 05:41AM by madhukesh_048
https://ift.tt/PZW4jzq
Open source logging tool
Hi, I'm looking for open source logging tools for logging error on cloud, please suggest. TIA
March 02, 2022 at 05:41AM by madhukesh_048
https://ift.tt/PZW4jzq
reddit
Open source logging tool
Hi, I'm looking for open source logging tools for logging error on cloud, please suggest. TIA
New post on /r/flutterdev subreddit:
SQLITE Ultimate Guide for Flutter Developers
https://youtu.be/0qx70QE-yKo
March 02, 2022 at 07:56AM by Aromatic-End-3667
https://ift.tt/WhTgVB2
SQLITE Ultimate Guide for Flutter Developers
https://youtu.be/0qx70QE-yKo
March 02, 2022 at 07:56AM by Aromatic-End-3667
https://ift.tt/WhTgVB2
YouTube
SQLITE Ultimate Guide for Flutter Developers
In this video we will learn we will do CRUD operation with Flutter and SQLITE. In this video we will Add/Edit/Delete and List Data from SQLITE to Flutter Application.
⏱TIMESTAMPS
00:00 - Introduction
01:38 - Flutter Packages
02:42 - Flutter Models
08:20…
⏱TIMESTAMPS
00:00 - Introduction
01:38 - Flutter Packages
02:42 - Flutter Models
08:20…
New post on /r/flutterdev subreddit:
What's THE BEST Flutter Navigator 2.0 Package? (Yeet ep. 1)
https://www.youtube.com/watch?v=GFdSITMseLk
March 02, 2022 at 08:59AM by uhossein
https://ift.tt/qRmwjO3
What's THE BEST Flutter Navigator 2.0 Package? (Yeet ep. 1)
https://www.youtube.com/watch?v=GFdSITMseLk
March 02, 2022 at 08:59AM by uhossein
https://ift.tt/qRmwjO3
YouTube
What's THE BEST Flutter Navigator 2.0 Package? (Yeet ep. 1)
Today we want to try out various flutter navigator 2.0 packages and see if they can do the things we want them to do, to get inspiration, and finally to start writing our own package.
The Comparison Table: https://www.notion.so/de13bc24c2434e309a76fef1d…
The Comparison Table: https://www.notion.so/de13bc24c2434e309a76fef1d…
New post on /r/flutterdev subreddit:
Have you ever felt that when you are working on a project you kinda get confused about what to do? Which one should I do first? I always get that so I built a small task manager app that lets you create 5 tasks and set a time for it. The default is (60 mins.). And vola! Work on those tasks.
https://ift.tt/Zan3qyd
March 02, 2022 at 09:27AM by devyuji
https://ift.tt/RhgILkH
Have you ever felt that when you are working on a project you kinda get confused about what to do? Which one should I do first? I always get that so I built a small task manager app that lets you create 5 tasks and set a time for it. The default is (60 mins.). And vola! Work on those tasks.
https://ift.tt/Zan3qyd
March 02, 2022 at 09:27AM by devyuji
https://ift.tt/RhgILkH
GitHub
GitHub - devyuji/smalltask: Take small steps to achieve big things.
Take small steps to achieve big things. Contribute to devyuji/smalltask development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Firestore filtering and pagination
I have a realtime value list which I am paginating by passing last id of the object,var eventDoc = _firestore.eventCollection.orderBy(FieldPath.documentId).limit(pageSize);if (startAfterId.isNotEmpty) {eventDoc = eventDoc.startAfter([startAfterId]);}In my bloc I have a list of subscriptions for each page,is there any good way to additionally filter this data, for example by name and then return paginated result?
March 02, 2022 at 10:38AM by eloherbapol
https://ift.tt/wL2zWoM
Firestore filtering and pagination
I have a realtime value list which I am paginating by passing last id of the object,var eventDoc = _firestore.eventCollection.orderBy(FieldPath.documentId).limit(pageSize);if (startAfterId.isNotEmpty) {eventDoc = eventDoc.startAfter([startAfterId]);}In my bloc I have a list of subscriptions for each page,is there any good way to additionally filter this data, for example by name and then return paginated result?
March 02, 2022 at 10:38AM by eloherbapol
https://ift.tt/wL2zWoM
reddit
Firestore filtering and pagination
I have a realtime value list which I am paginating by passing last id of the object, var eventDoc =...
New post on /r/flutterdev subreddit:
Flutter Tutorial: Food App Onboarding Screen Animation (Lottie)
https://youtu.be/5vPchU0-4x4
March 02, 2022 at 12:09PM by JideGuru
https://ift.tt/gGvoFsp
Flutter Tutorial: Food App Onboarding Screen Animation (Lottie)
https://youtu.be/5vPchU0-4x4
March 02, 2022 at 12:09PM by JideGuru
https://ift.tt/gGvoFsp
YouTube
Flutter Tutorial: Food App Onboarding Screen Animation (Lottie)
In this video, we'll be working on a simple Onboarding Screen animation with Lottie, Implicit animations, and Custom Paint.
Source Code: https://github.com/JideGuru/youtube_videos/tree/master/food_onboarding_lottie
Subscribe: https://www.youtube.com/ch…
Source Code: https://github.com/JideGuru/youtube_videos/tree/master/food_onboarding_lottie
Subscribe: https://www.youtube.com/ch…
New post on /r/flutterdev subreddit:
Tutorial to Build Zoom Clone
https://youtu.be/sMA1dKbv33Y
March 02, 2022 at 02:42PM by OSetups
https://ift.tt/twacxmX
Tutorial to Build Zoom Clone
https://youtu.be/sMA1dKbv33Y
March 02, 2022 at 02:42PM by OSetups
https://ift.tt/twacxmX
YouTube
Flutter Firebase Backend Course for Beginners - Zoom Clone | Video Conferencing App
Build a Complete Zoom Clone with Flutter, Firebase & Jitsi Meet.
Features:
1. Google Sign In
2. Create New Meeting
3. Join Meeting
4. Mute/Unmute Audio
5. Mute/Unmute Video
6. Change Display Name while Joining
7. Raise Hand
8. Start Screen Sharing
9. Mute…
Features:
1. Google Sign In
2. Create New Meeting
3. Join Meeting
4. Mute/Unmute Audio
5. Mute/Unmute Video
6. Change Display Name while Joining
7. Raise Hand
8. Start Screen Sharing
9. Mute…
New post on /r/flutterdev subreddit:
An animated login screen built with Flutter
https://youtu.be/VvYLfh4aU60
March 02, 2022 at 06:52PM by Vikilinho
https://ift.tt/E3lwGni
An animated login screen built with Flutter
https://youtu.be/VvYLfh4aU60
March 02, 2022 at 06:52PM by Vikilinho
https://ift.tt/E3lwGni
YouTube
Flutter Animated login screen app. #flutter #fluttercommunity #mobileapp #animation
link to the source code: https://github.com/vikilinho/animated_login
New post on /r/flutterdev subreddit:
Dart & Flutter 2.0 | The Complete Flutter Development Bootcamp - Preneure
https://ift.tt/Vrh3PFo
March 02, 2022 at 06:52PM by preneure
https://ift.tt/lYb7H0L
Dart & Flutter 2.0 | The Complete Flutter Development Bootcamp - Preneure
https://ift.tt/Vrh3PFo
March 02, 2022 at 06:52PM by preneure
https://ift.tt/lYb7H0L
Preneure
Dart & Flutter | The Complete Flutter Development Course - Preneure
A Complete Guide To Flutter Development – Build 7 Native Cross-Platform iOS and Android Apps Using Flutter. Welcome to The...
New post on /r/flutterdev subreddit:
Desktop App Idea - Is Flutter a viable option? [Opinion Based Question]
Hi, I just discovered Flutter and would love to give it a try.I’m planning to build a “secure” app, that will try to ensure credibility.
What I mean by that - I want it to check how many output displays are currently connected, persist fullscreen mode and disable (or catch) any Alt+Tab action (loosing focus from the app). Apart from that one of the main parts would be webcam recording and its processing (probably using some libs). Also I would love it to recognize when it’s running in VM.The catch is, I want it to work on Windows, Mac, Linux. I realize it will require a lot of native code, but also Flutter could save me a lot of work (at least I think), since the app should have several screens with forms, some logic around that, communication with rest api and so on.So the question is. How good is Flutter with such heavy native code requirements?From what I understood from docs, I can use Channels to execute native code, but that seems fishy to me since it’s asynchronous, so I’m worried it won’t be stable and consistent.I’ll appreciate any input to the topic, mainly from more experienced people.Thanks a lot! ^_^
March 02, 2022 at 07:55PM by Jake_3h
https://ift.tt/wpKtyIq
Desktop App Idea - Is Flutter a viable option? [Opinion Based Question]
Hi, I just discovered Flutter and would love to give it a try.I’m planning to build a “secure” app, that will try to ensure credibility.
What I mean by that - I want it to check how many output displays are currently connected, persist fullscreen mode and disable (or catch) any Alt+Tab action (loosing focus from the app). Apart from that one of the main parts would be webcam recording and its processing (probably using some libs). Also I would love it to recognize when it’s running in VM.The catch is, I want it to work on Windows, Mac, Linux. I realize it will require a lot of native code, but also Flutter could save me a lot of work (at least I think), since the app should have several screens with forms, some logic around that, communication with rest api and so on.So the question is. How good is Flutter with such heavy native code requirements?From what I understood from docs, I can use Channels to execute native code, but that seems fishy to me since it’s asynchronous, so I’m worried it won’t be stable and consistent.I’ll appreciate any input to the topic, mainly from more experienced people.Thanks a lot! ^_^
March 02, 2022 at 07:55PM by Jake_3h
https://ift.tt/wpKtyIq
reddit
Desktop App Idea - Is Flutter a viable option? [Opinion Based...
Hi, I just discovered Flutter and would love to give it a try. I’m planning to build a “secure” app, that will try to ensure credibility. What...
New post on /r/flutterdev subreddit:
Self-Balancing Binary Search Tree For Dart.
https://ift.tt/DQP1HLh
March 02, 2022 at 07:22PM by mehmetyaz
https://ift.tt/lH6Wc0j
Self-Balancing Binary Search Tree For Dart.
https://ift.tt/DQP1HLh
March 02, 2022 at 07:22PM by mehmetyaz
https://ift.tt/lH6Wc0j
Dart packages
binary_tree | Dart Package
Self-Balancing Binary Search Tree for Dart. BST is implemented as Iterable. There are many operations such as greaterThen, lessThenOrEqual (create sublist), max , min etc.
New post on /r/flutterdev subreddit:
Can I add a PWA to an existing flutter app?
I have a website that is PWA compatible. To temporarily speed up development I would like to add this PWA to my existing flutter app. Would this be possible? Would it just be webview and still get the PWA benefits?
March 02, 2022 at 09:09PM by Necessary1OK
https://ift.tt/XJhmFKz
Can I add a PWA to an existing flutter app?
I have a website that is PWA compatible. To temporarily speed up development I would like to add this PWA to my existing flutter app. Would this be possible? Would it just be webview and still get the PWA benefits?
March 02, 2022 at 09:09PM by Necessary1OK
https://ift.tt/XJhmFKz
reddit
Can I add a PWA to an existing flutter app?
I have a website that is PWA compatible. To temporarily speed up development I would like to add this PWA to my existing flutter app. Would this...
New post on /r/flutterdev subreddit:
codsnipet, an application for indexing, searching and storing your codesnippets
Hello Guy,today I publish my first version of codsnipet, the Backend is written in Rust(using Rocket) and the frontend Flutter. The UI is pretty functional so please give it a try if you are interested.https://github.com/MichaelProjects/codsnipet/tree/master
March 02, 2022 at 09:53PM by Aktienmensch
https://ift.tt/SgzvyFD
codsnipet, an application for indexing, searching and storing your codesnippets
Hello Guy,today I publish my first version of codsnipet, the Backend is written in Rust(using Rocket) and the frontend Flutter. The UI is pretty functional so please give it a try if you are interested.https://github.com/MichaelProjects/codsnipet/tree/master
March 02, 2022 at 09:53PM by Aktienmensch
https://ift.tt/SgzvyFD
GitHub
GitHub - MichaelProjects/codsnipet: An application, to organize, label and search your code snippets. Safe time on your next project…
An application, to organize, label and search your code snippets. Safe time on your next project setup. - GitHub - MichaelProjects/codsnipet: An application, to organize, label and search your code...