New post on Flutter Dev Google group:
Brand New - Need Help With Lesson 1
I've been banging my head on this one. Likely staring me in the face. Help appreciated. Lesson 1: https://ift.tt/3Bh6Vfe Ran the code in Step 1 ok. Added the english_words package, ran pub_get. and confirmed it was installed. Pasted
July 19, 2021 at 12:42AM by David LeVine
https://ift.tt/3wOkmjd
Brand New - Need Help With Lesson 1
I've been banging my head on this one. Likely staring me in the face. Help appreciated. Lesson 1: https://ift.tt/3Bh6Vfe Ran the code in Step 1 ok. Added the english_words package, ran pub_get. and confirmed it was installed. Pasted
July 19, 2021 at 12:42AM by David LeVine
https://ift.tt/3wOkmjd
New post on Flutter Dev Google group:
Im having trouble with android licenses
I am sure I had already accepted android licenses but when solving another problem with emulators and when running flutter doctor again it said the status of the licenses was unknown, when trying to run flutter doctor --android-licenses in command prompt an error appeared and when I searched in
July 19, 2021 at 03:20AM by Diego del Hierro
https://ift.tt/3xSyNny
Im having trouble with android licenses
I am sure I had already accepted android licenses but when solving another problem with emulators and when running flutter doctor again it said the status of the licenses was unknown, when trying to run flutter doctor --android-licenses in command prompt an error appeared and when I searched in
July 19, 2021 at 03:20AM by Diego del Hierro
https://ift.tt/3xSyNny
New post on /r/flutterdev subreddit:
State Management With Timers
So I have a few scenarios that I'm curious how experienced devs would approach. The premise is simple: I have multiple widgets who's display depend on a timer. For example, a text widget that counts the seconds of current time, like a digital clock. What would be the most efficient approach?An ancestor widget that calls setState each second the timer runs its callback. Note that there could be widgets in between this ancestor and the widgets that need the state change value. Usually we try to push those changes to the leaves.Keep the state in the widgets that need the value, which would be the closest ancestor to the text widget in my example. This would mean creating a timer for each of these widgets. I would guess that the timers could be out of sync due to this approach, and build calls might be spread out across multiple frames. That's ok, but would that cause more jank than approach 1Use something like the provider package and wrap the widgets that need the state in Consumers.I'm largely curious about scenarios 1 and 2 - just to see how someone would approach that without breaking out a package or Inherited widgets.
July 19, 2021 at 05:34AM by SquatchyZeke
https://ift.tt/2UoxkXM
State Management With Timers
So I have a few scenarios that I'm curious how experienced devs would approach. The premise is simple: I have multiple widgets who's display depend on a timer. For example, a text widget that counts the seconds of current time, like a digital clock. What would be the most efficient approach?An ancestor widget that calls setState each second the timer runs its callback. Note that there could be widgets in between this ancestor and the widgets that need the state change value. Usually we try to push those changes to the leaves.Keep the state in the widgets that need the value, which would be the closest ancestor to the text widget in my example. This would mean creating a timer for each of these widgets. I would guess that the timers could be out of sync due to this approach, and build calls might be spread out across multiple frames. That's ok, but would that cause more jank than approach 1Use something like the provider package and wrap the widgets that need the state in Consumers.I'm largely curious about scenarios 1 and 2 - just to see how someone would approach that without breaking out a package or Inherited widgets.
July 19, 2021 at 05:34AM by SquatchyZeke
https://ift.tt/2UoxkXM
reddit
State Management With Timers
So I have a few scenarios that I'm curious how experienced devs would approach. The premise is simple: I have multiple widgets who's display...
New post on /r/flutterdev subreddit:
Flutter for Single-Page Scrollable Websites with Navigator 2.0
Here is a series of articles: “Flutter for Single-Page Scrollable Websites with Navigator 2.0 “. This series focuses on implementing scrolling and navigation logic for a single page scrollable website. I will also give a talk at the upcoming Flutter Global Summit on this topic.Part 1: IntroductionIn the second article building the scrollable content lazily using a ListView, scrolling programmatically to an index, and notifying the first visible index while scrolling is explainedPart 2: Scroll to PositionIn the third article, a similar UI to the previous one is built lazily using a PageViewPart 3: Scroll to PageIn the fourth article, we learn how to live with building all the sections of the scrollable widget at once in a SingleChildScrollView + Column.Part 4: Ensure VisibleIn the fifth article, we will study lazily building a scrollable widget with varying-sized sections like an illusion using the 3rd party #ScrollablePositionedList libraryPart 5: Scroll to IndexWe start implementing the navigation logic with the sixth article using the #Navigator2 API.Part 6: NavigationIn the last article, we will use query parameters instead of path variables in URLs and study parsing & restoring URLs according to app state changes, browser back / forward button clicks.Part 7: Query Params
July 19, 2021 at 07:15AM by ulusoyapps
https://ift.tt/3ksb2z0
Flutter for Single-Page Scrollable Websites with Navigator 2.0
Here is a series of articles: “Flutter for Single-Page Scrollable Websites with Navigator 2.0 “. This series focuses on implementing scrolling and navigation logic for a single page scrollable website. I will also give a talk at the upcoming Flutter Global Summit on this topic.Part 1: IntroductionIn the second article building the scrollable content lazily using a ListView, scrolling programmatically to an index, and notifying the first visible index while scrolling is explainedPart 2: Scroll to PositionIn the third article, a similar UI to the previous one is built lazily using a PageViewPart 3: Scroll to PageIn the fourth article, we learn how to live with building all the sections of the scrollable widget at once in a SingleChildScrollView + Column.Part 4: Ensure VisibleIn the fifth article, we will study lazily building a scrollable widget with varying-sized sections like an illusion using the 3rd party #ScrollablePositionedList libraryPart 5: Scroll to IndexWe start implementing the navigation logic with the sixth article using the #Navigator2 API.Part 6: NavigationIn the last article, we will use query parameters instead of path variables in URLs and study parsing & restoring URLs according to app state changes, browser back / forward button clicks.Part 7: Query Params
July 19, 2021 at 07:15AM by ulusoyapps
https://ift.tt/3ksb2z0
Medium
Flutter for Single-Page Scrollable Websites with Navigator 2.0 — Part 1: Introduction
Single page scrollable websites are everywhere. In this website design pattern, all the content is presented in one long-scrolling layout…
New post on /r/flutterdev subreddit:
Flutter Multi-platform allows developers to unleash their app to run on the wide variety of different platforms with little or no change.
https://ift.tt/3kyzvCz
July 19, 2021 at 07:10AM by connectsteven
https://ift.tt/3wS9Xmu
Flutter Multi-platform allows developers to unleash their app to run on the wide variety of different platforms with little or no change.
https://ift.tt/3kyzvCz
July 19, 2021 at 07:10AM by connectsteven
https://ift.tt/3wS9Xmu
GitHub
GitHub - Mindinventory/FlutterMultiPlatformSample: Flutter Multi-platform allows developers to unleash their app to run on the…
Flutter Multi-platform allows developers to unleash their app to run on the wide variety of different platforms with little or no change. - GitHub - Mindinventory/FlutterMultiPlatformSample: Flutte...
New post on /r/flutterdev subreddit:
How can we parse HTML tags in Flutter
https://ift.tt/36RvBg1
July 19, 2021 at 06:17AM by rrtutors
https://ift.tt/3ktzEY8
How can we parse HTML tags in Flutter
https://ift.tt/36RvBg1
July 19, 2021 at 06:17AM by rrtutors
https://ift.tt/3ktzEY8
Rrtutors
How can we parse HTML tags in Flutter
Parse html tags in flutter by using html library. this will parse html files/text and we can read respected tags, attributes by ids, class names...
New post on /r/flutterdev subreddit:
5 FloatingActionButton Examples In Flutter With Tutorial - For Beginners.
https://ift.tt/3rlnVvW
July 19, 2021 at 08:29AM by athira_reddy
https://ift.tt/3zhf8hD
5 FloatingActionButton Examples In Flutter With Tutorial - For Beginners.
https://ift.tt/3rlnVvW
July 19, 2021 at 08:29AM by athira_reddy
https://ift.tt/3zhf8hD
Reddit
From the FlutterDev community on Reddit: 5 FloatingActionButton Examples In Flutter With Tutorial - For Beginners.
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
I have implemented FishEye effect on flutter - Soon I will publish magnifier with lense effect
https://twitter.com/Kubenqpl/status/1417031461077544961
July 19, 2021 at 10:10AM by kubenqpl
https://ift.tt/36MRKw1
I have implemented FishEye effect on flutter - Soon I will publish magnifier with lense effect
https://twitter.com/Kubenqpl/status/1417031461077544961
July 19, 2021 at 10:10AM by kubenqpl
https://ift.tt/36MRKw1
Twitter
Kuba Neukirch 💙
Now I have started playing with FishEye effect. I will try to make this fancy magnifier with lense-like feeling! Why I love spending time on useless things 😆 P.S. It will be shared later this week with code of ripple pond effect #flutter #flutterdev
New post on /r/flutterdev subreddit:
Best resources to learn Flutter and Dart from scratch?
What would be the best way of going about learning Flutter? Also, how's web development in Flutte?
July 19, 2021 at 09:49AM by Xarion77
https://ift.tt/3z8YWyT
Best resources to learn Flutter and Dart from scratch?
What would be the best way of going about learning Flutter? Also, how's web development in Flutte?
July 19, 2021 at 09:49AM by Xarion77
https://ift.tt/3z8YWyT
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
How is it not a much bigger problem that there are no good solutions for Video (Stream) Caching?
I have developed different Apps with flutter and every time I need to display network videos I have the same problem, that there are currently no solutions for video caching for the video player package when streaming a network video.I would assume that this is a common use case because If you look at current social media apps, they all heavily use network videos and when there is no caching for video streaming, the consumed bandwidth would be much higher and there would be a lot more loading times for the user.Did you have this issue before? How did you solve it or did you just not used any caching for videos? So far I have used this PR which unfortunately was rejected and is now quite out of date. Some people suggest using the cache_manager plugin but that makes no sense to e because you can only cache a whole video, so you need to wait for it to completely load before you can cache it.I'm really curios how this is not a much bigger problem because this issue seems to get way to few attention in my opinion.
July 19, 2021 at 10:50AM by jwknows
https://ift.tt/2UtzN30
How is it not a much bigger problem that there are no good solutions for Video (Stream) Caching?
I have developed different Apps with flutter and every time I need to display network videos I have the same problem, that there are currently no solutions for video caching for the video player package when streaming a network video.I would assume that this is a common use case because If you look at current social media apps, they all heavily use network videos and when there is no caching for video streaming, the consumed bandwidth would be much higher and there would be a lot more loading times for the user.Did you have this issue before? How did you solve it or did you just not used any caching for videos? So far I have used this PR which unfortunately was rejected and is now quite out of date. Some people suggest using the cache_manager plugin but that makes no sense to e because you can only cache a whole video, so you need to wait for it to completely load before you can cache it.I'm really curios how this is not a much bigger problem because this issue seems to get way to few attention in my opinion.
July 19, 2021 at 10:50AM by jwknows
https://ift.tt/2UtzN30
GitHub
[video_player] Caching for network data source by sanekyy · Pull Request #2429 · flutter/plugins
Description
This PR improves other PR to speed up the process of merging of this feature
Adapt caching to the new structure of video plugin.
Add tests.
Pass maxCacheSize and maxCacheFileSize to pla...
This PR improves other PR to speed up the process of merging of this feature
Adapt caching to the new structure of video plugin.
Add tests.
Pass maxCacheSize and maxCacheFileSize to pla...
New post on /r/flutterdev subreddit:
Color Curves in Flutter
I working on project to bring a clone Snapseed in flutter web. I thinks the color curves feature is important feature but i don't know how it works. Anyone explain that and give me some idea to implement in flutter.
July 19, 2021 at 11:51AM by definev
https://ift.tt/3xPl5C9
Color Curves in Flutter
I working on project to bring a clone Snapseed in flutter web. I thinks the color curves feature is important feature but i don't know how it works. Anyone explain that and give me some idea to implement in flutter.
July 19, 2021 at 11:51AM by definev
https://ift.tt/3xPl5C9
reddit
Color Curves in Flutter
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
How to have drawer in front of bottom Navbar
Hey All. How do I bring this drawer in front of my bottom nav bar? [image: Screenshot 2021-07-19 at 4.28.50 PM.png] -- Thanks & Regards, Hyder
July 19, 2021 at 01:00PM by Hyder Hussain
https://ift.tt/3za1M6E
How to have drawer in front of bottom Navbar
Hey All. How do I bring this drawer in front of my bottom nav bar? [image: Screenshot 2021-07-19 at 4.28.50 PM.png] -- Thanks & Regards, Hyder
July 19, 2021 at 01:00PM by Hyder Hussain
https://ift.tt/3za1M6E
New post on Flutter Dev Google group:
How do you Separate the mobile app and WebView to have different user experiences?
I want to display a different experience on the mobile app and a different user experience on the web app.
July 19, 2021 at 02:25PM by Imint Studios
https://ift.tt/3ircYVD
How do you Separate the mobile app and WebView to have different user experiences?
I want to display a different experience on the mobile app and a different user experience on the web app.
July 19, 2021 at 02:25PM by Imint Studios
https://ift.tt/3ircYVD
New post on /r/flutterdev subreddit:
Building Game with Flutter #9.1: Add Manufacturing View.
https://www.youtube.com/watch?v=OopvVoQEaGE
July 19, 2021 at 01:33PM by gladimdim
https://ift.tt/3BlzyYo
Building Game with Flutter #9.1: Add Manufacturing View.
https://www.youtube.com/watch?v=OopvVoQEaGE
July 19, 2021 at 01:33PM by gladimdim
https://ift.tt/3BlzyYo
YouTube
Building Game with Flutter #9.1: Add Manufacturing View.
In this video I will code the new fresh feature - Manufacturing. Some of the towns in my game can produce goods (in order to replenish the stocks), in order to do that you must build manufacturings there.
This is the first screencast where I start doing…
This is the first screencast where I start doing…
New post on /r/flutterdev subreddit:
Hi, I am currently working on an open source project called shark - a flutter server rendering framework. If you are interested and good at flutter and nodejs, welcome to dm me and contribute your code.😁😀
https://ift.tt/3irxHbT
July 19, 2021 at 03:59PM by NiceGuy-n2
https://ift.tt/3exJ8Oh
Hi, I am currently working on an open source project called shark - a flutter server rendering framework. If you are interested and good at flutter and nodejs, welcome to dm me and contribute your code.😁😀
https://ift.tt/3irxHbT
July 19, 2021 at 03:59PM by NiceGuy-n2
https://ift.tt/3exJ8Oh
GitHub
GitHub - lau1944/shark: A Flutter server rendering framework
A Flutter server rendering framework. Contribute to lau1944/shark development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 94 - Tutorials, videos, packages, and much more!
https://ift.tt/3BmJ2my
July 19, 2021 at 03:22PM by vensign
https://ift.tt/36KyPlx
Flutter Tap Weekly Newsletter Week 94 - Tutorials, videos, packages, and much more!
https://ift.tt/3BmJ2my
July 19, 2021 at 03:22PM by vensign
https://ift.tt/36KyPlx
Fluttertap
Newsletter Issue 94
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 94
New post on Flutter Dev Google group:
Android Studio 4.1.2 Built-In Emulator not always available
Hello, I have Android Studio 4.1.2, I realised that the studio built-in emulator is available if I open certain ones of my flutter projects, but not available for new ones I created. Also the option to view the emulator from the view menu -> Tool windows -> Emulator is not there !! (In all
July 19, 2021 at 04:17PM by ehab elnahas
https://ift.tt/3zbZTpX
Android Studio 4.1.2 Built-In Emulator not always available
Hello, I have Android Studio 4.1.2, I realised that the studio built-in emulator is available if I open certain ones of my flutter projects, but not available for new ones I created. Also the option to view the emulator from the view menu -> Tool windows -> Emulator is not there !! (In all
July 19, 2021 at 04:17PM by ehab elnahas
https://ift.tt/3zbZTpX
New post on /r/flutterdev subreddit:
Multiple Windows in Flutter?
We are planning on a flutter rewrite for an app located in the windows and mac store under the name Tipitaka Pali Projector . We also have android and ios in official stores.We currently have a side panel, a main Pali Language text reading window and an English translation window.Our rewrite will require multiple texts to be open at the same time for the desktop.We could do a split pane, but MDI is preferred. I'm not sure if split panes are allowed either.MDI is not icons.. it is multiple document interface.. which means we have dragable resizeable windows inside the app and not multiple instances of the same app doing RPC .This flutterdev group does not allow pictures .. A youtube video is in this link here. https://www.youtube.com/watch?v=UArS-5kajY0Is this possible in Flutter Desktop or even Mobile?
July 19, 2021 at 04:58PM by bksubhuti
https://ift.tt/2Uq6nmw
Multiple Windows in Flutter?
We are planning on a flutter rewrite for an app located in the windows and mac store under the name Tipitaka Pali Projector . We also have android and ios in official stores.We currently have a side panel, a main Pali Language text reading window and an English translation window.Our rewrite will require multiple texts to be open at the same time for the desktop.We could do a split pane, but MDI is preferred. I'm not sure if split panes are allowed either.MDI is not icons.. it is multiple document interface.. which means we have dragable resizeable windows inside the app and not multiple instances of the same app doing RPC .This flutterdev group does not allow pictures .. A youtube video is in this link here. https://www.youtube.com/watch?v=UArS-5kajY0Is this possible in Flutter Desktop or even Mobile?
July 19, 2021 at 04:58PM by bksubhuti
https://ift.tt/2Uq6nmw
YouTube
New Panel Buttons.. 1.07 features
This is now released in the MS Store and the Ubuntu Snap Store. Mac store, android play store and iOS store will arrive shortly
New post on /r/flutterdev subreddit:
Is there an audio lib that allows you to explicitly specify the audio stream?
I have been reading over the docs for a few audio libraries in flutter. I can't seems to find one that explicitly allows you to specific the audio stream (ringer/notification or media/music) on both iOS and Android.Is anyone aware of a package that allows the behaviour?Thanks!
July 19, 2021 at 05:22PM by scorr204
https://ift.tt/3hKYAZj
Is there an audio lib that allows you to explicitly specify the audio stream?
I have been reading over the docs for a few audio libraries in flutter. I can't seems to find one that explicitly allows you to specific the audio stream (ringer/notification or media/music) on both iOS and Android.Is anyone aware of a package that allows the behaviour?Thanks!
July 19, 2021 at 05:22PM by scorr204
https://ift.tt/3hKYAZj
Reddit
From the FlutterDev community on Reddit: Is there an audio lib that allows you to explicitly specify the audio stream?
Posted by scorr204 - No votes and 4 comments
New post on /r/flutterdev subreddit:
Basics need to know in Flutter | Listwheelscrollview
https://www.youtube.com/watch?v=IUj-XnqrN_g
July 19, 2021 at 06:45PM by Dhanraj_Flutterdev
https://ift.tt/3BmzM1q
Basics need to know in Flutter | Listwheelscrollview
https://www.youtube.com/watch?v=IUj-XnqrN_g
July 19, 2021 at 06:45PM by Dhanraj_Flutterdev
https://ift.tt/3BmzM1q
YouTube
Flutter ListWheelScrollView Basics | Flutter Tutorials | Flutter Widgets
#flutter #flutterdev
ListWheelScrollView is a flutter widget that is used to build ListView with 3D-effect. We can also use ListView to create a list of items but we can’t add a 3D effect to it plus it also comes with a constrain that all the children inside…
ListWheelScrollView is a flutter widget that is used to build ListView with 3D-effect. We can also use ListView to create a list of items but we can’t add a 3D effect to it plus it also comes with a constrain that all the children inside…
New post on Flutter Dev Google group:
Stateful/stateless widget inside a Positioned widget (that is inside a Stack) NOT working
Hello! I'm trying to put a stateful/stateless widget inside a Positioned widget (that is inside a Stack widget), but it is NOT working. I want to have a CustomPaint navigation bar, where depending on which icon you click, a different screen is displayed over the CustomPaint navigation bar (the
July 19, 2021 at 09:02PM by Alvaro Gonzalez Rico
https://ift.tt/3iutJiM
Stateful/stateless widget inside a Positioned widget (that is inside a Stack) NOT working
Hello! I'm trying to put a stateful/stateless widget inside a Positioned widget (that is inside a Stack widget), but it is NOT working. I want to have a CustomPaint navigation bar, where depending on which icon you click, a different screen is displayed over the CustomPaint navigation bar (the
July 19, 2021 at 09:02PM by Alvaro Gonzalez Rico
https://ift.tt/3iutJiM