Questions tagged [flutter-build]

146 questions
0
votes
3 answers

how do you resolve flutter build errors?

I am trying to build the APK file for this app but I'm getting some errors I don't understand. I have searched this platform and Github but none are helping. How can I resolve this issue? [+391809 ms] FAILURE: Build failed with an exception. [ +8…
0
votes
2 answers

How can I measure the specific height in the flutter?

I have no idea to figure out this problem in flutter. I want to know the size without app bar size and tab bar size(up). I use variable "vertical_size" as var vertical_size = (MediaQuery.of(context).size.height - …
구태훈
  • 11
  • 1
0
votes
0 answers

Root Widget MaterialApp called multiple times

As of my understanding, I know that the stateful widget build method can be called multiple times. I don't understand why the Root widget MaterialApp is called multiple times even I have used a stateless widget. Here is the code Future main()…
Jigar Fumakiya
  • 2,039
  • 1
  • 8
  • 21
0
votes
1 answer

flutter build apk fails - Could not determine the dependencies of task ':app:processDebugResources'

here is the complete output : I tried switching to stable channel and ran these commands already. flutter channel stable flutter upgrade flutter run Even on stable channel the error doesn't go ! …
Rudr Thakur
  • 330
  • 3
  • 12
0
votes
0 answers

First Flutter gradle build failed (what went wrong:- java/lang/Throwable$WrappedPrintWriter)

I am trying to build first flutter project only and it shows gradle build failed, I don't understand why is this happening I searched a lot and no solution worked for me. I am started working on flutter again after some time. In flutter doctor…
Vishnubly
  • 539
  • 1
  • 8
  • 17
0
votes
1 answer

how to solve webview flutter overrides a deprecated API?

app is running perfectly fine and webview no longer using this project then why its showing error? ERROR Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. …
Marzook
  • 371
  • 1
  • 5
  • 20
-1
votes
1 answer

Flutter Linux Build Encoding issue

When building an linux app using flutter build linux. It started to having an issue with displaying non-latin characters. flutter doctor -v This image provides some detail on the issue I'm encountering. All the squares are asian characters…
-1
votes
1 answer

Flutter does not build the project on real iOS device: PhaseScriptExecution

When I want to run my flutter application on the real iOS device, I get this error. I know, 2 weeks ago it worked nicely, but in this 2 weeks I developed lots of feature, and lastly permission handler future, and now I can not run the project on my…
-1
votes
1 answer

UI missing in Flutter APK

I've been trying since two days to resolve this weird issue. In debug mode my app running good but in release apk UI not rendering. I've checked all possible solutions but can't fix it. As some UI is also missing from first screen. Here is My…
user18710300
-1
votes
1 answer

flutter build web didn't work (Missing index.html.) in flutter 2

I can't get a web release from my flutter app when I use flutter build web I see this Error : Missing index.html Then I run the flutter create but I facing by this Error : No option specified for the output of directory. Create a new flutter…
Huseyn
  • 372
  • 1
  • 7
  • 20
-1
votes
1 answer

How to rebuild the root widget of flutter?

I am using provider package to detect changes in 'todaysTasks' but as you can see 'todayTasks' depends on DaysRecords which stores a list of DayTasks, so what I want is to rebuild my root widget (which is MyApp) whenever i push a DayTask in…
1 2 3
9
10