Questions tagged [flutter-path]

14 questions
6
votes
6 answers

I did update flutter 3.7 and flutter doctor

I can build flutter project . but I did catch warning by flutter doctor I want fix . warning code [!] Flutter (Channel stable, 3.7.0, on macOS 13.0.1 22A400 darwin-arm64, locale ja-JP) ! Warning: `dart` on your path resolves to …
Tdayo
  • 269
  • 4
  • 11
3
votes
2 answers

Flutter-iOS when apps update / recompile stored image is missing

Hi forgive my English and also a newbie on flutter iOS, I have an app on flutter on iOS that users can take pictures and videos from their camera and gallery I'm using the image_picker package this has no problem, then I save it on the on its…
1
vote
1 answer

Calculate distance between the area surrounded by a Path and a specific point in Flutter

According to the documentation for Path: Closed sub-paths enclose a (possibly discontiguous) region of the plane based on the current fillType. As far as I understand this implies that when a Path object is closed it surrounds a two dimensional…
Christian
  • 25,249
  • 40
  • 134
  • 225
0
votes
0 answers

flutter web app with fixed navegation side menu

I'm trying to create a web app using flutter and a problem rise because I need to add a side menu to the app that holds the buttons to navigate between pages in the app. I'm using app router for routing, but the problem is that the side menu and the…
0
votes
1 answer

a problem when i try to add flutter path(zsh: permission denied: /Users/saitdogu/.zshrc)

I'm new on flutter and just downloaded sdk to my mac m2. I did all the things from flutter offical page but i couldn't add the path yet. Can someone help me? thanks.terminal
0
votes
1 answer

Flutter Image form Image Picker to Document Path

I am creating an app that saves images locally through sqflite, I have soon found out that the images are being saved as temp which means that it will be deleted by the device and i'm not able to retrieve those images anymore. I have been coding to…
RalphIan
  • 3
  • 1
0
votes
1 answer

Flutter Resolves to Wrong Path

I'm not really sure what I did, but it seems like I ended up making the path of flutter split into two different places, and the flutter SDK Checkout is not in the right one. I've been trying for hours to fix it. This is what flutter doctor shows.…
0
votes
0 answers

File picked by file_picker package does not exist in flutter

I want to pick an audio file in Flutter. I use file_picker package to pick an audio file. After picking it, I want to upload the file to AWS Storage, but the file in the path of the picked file does not exist. I check it by the following code…
sm_sayedi
  • 326
  • 2
  • 17
0
votes
0 answers

Flutter: non-asset local image

I'd like to include images in my Flutter application which are not asset images. Let me clarify a bit. I am working with an embedded Unity application inside the Flutter app. I can communicate bidirectionally and part of the communication is sending…
0
votes
0 answers

Flutter Web Canvas: Inconsistent rendering of paths-difference

Background Assume a game using fog-of-war drawn using Flutter Web Canvas. Each vessel has a range-of-sight. This range-of-sight is "removed" from the fog-of-war and appears as white background. The range-of-sight as well as the fog-of-war are Paths.…
Dabbel
  • 2,468
  • 1
  • 8
  • 25
0
votes
2 answers

Flutter path_provider issue

I upgraded flutter and dart recently and unexpectedly encountered this error. Everything was fine, I just re-started the project and the error was there! Error: FAILURE: Build failed with an exception. What went wrong: Execution failed for task…
0
votes
0 answers

Cannot save a file to the documents directory IOS Flutter

I tried to test the file download and saving to the documents directory. The code works on Android, but fails on IOS. Here is the code: var dir = await getApplicationDocumentsDirectory(); var documentName = ""; documentName = "testname.pdf"; var…
Viktor Vostrikov
  • 1,322
  • 3
  • 19
  • 36
0
votes
1 answer

How to render a arc path after previous arc animation complete

When I trying to render a two arc in I same path both are rendered at the same time, but I need to render a second arc after the first arc's animation gets completed. I just want to render the second arc as it should start from the end of the first…
yuva
  • 436
  • 4
  • 9
-1
votes
1 answer

Flutter Shows path error on take picture function

I write some code to take picture and saved in getTemporaryDirectory() path variable but wheni initalize the path on _cameraController.takePicture(path); it shows me error of Too many positional arguments: 0 allowed, but 1 found. Try…