Questions tagged [flutter-web]

Questions related to Flutter for web support – currently (as of January 2021) is available on the beta channel. Flutter supports the generation of web content rendered using standards-based web technologies: HTML, CSS and JavaScript. With web support, you can compile existing Flutter code written in Dart into a client experience that can be embedded in the browser and deployed to any web server.

Flutter for web is a code-compatible implementation of Flutter that is rendered using standards-based web technologies: HTML, CSS and JavaScript. With web support, you can compile existing Flutter code written in Dart into a client experience that can be embedded in the browser and deployed to any web server.

4374 questions
1
vote
0 answers

How to prevent REST Url from inspecting in flutter web?

REST Url are explode in flutter web app as in attached image. Are there any ways to prevent from inspecting?
Wai Han Ko
  • 760
  • 5
  • 16
1
vote
1 answer

How to make a stepper like in image in flutter

How can I achieve this kind of stepper as shown in the image? I have tried the stepper widget and some packages but was unable to achieve that
1
vote
1 answer

Flutter go router pass List dynamic to parameter

i was using go router for flutter app i can pass String parameters between activities and its working now i want to pass list dynamic and am getting error The argument type 'String' can't be assigned to the parameter type 'List'.…
Abu Qudama
  • 59
  • 1
  • 7
1
vote
1 answer

Flutter Web direct-links throw 404 while routed navigation works

On my flutter web app, I'm using Beamer package to navigate routes. When testing the app on chrome, everything works fine. After deploying my app to firebase, pasting route links into the search bar doesnt work. More accurate description of the…
1
vote
1 answer

Flutter web app keeps italicizing on mobile browser

My flutter web app keeps italicizing my text when I open it with my a mobile web browser, I even tried using a rich text widget but still nothing, but it look normal always on my web browser on my PC I even tried setting the rich text property of…
1
vote
0 answers

Flutter Web Email Attachment as PDF

Can Someone please help me out regarding Email Attachment in flutter Web. I have already done this thing easily in the Android Using the path_provider to first store it in the Temp Directory and then getting the path to share it on the email or…
Faizan Ali
  • 23
  • 2
1
vote
0 answers

Flutter Web App Hosted in NodeJS shows only white screen

I have built a flutter web application (flutter stable@3.3.9) where I have set the url strategy to PathUrlStrategy(). Of course, locally this application builds fine and runs fine. I am hosting this application in a NodeJS application as…
jobo54321
  • 106
  • 6
1
vote
2 answers

How to suggest Flutter Mobile app on clicking flutter web app url?

How to succeed When user tap on Flutter web url we should suggest whether open in Chrome or Flutter installed app?
PradeepKumar
  • 138
  • 8
1
vote
0 answers

Flutter Rotate Painter from TopRight

I had an SVG in Adobe Illustrator that I converted to CustomPaint class using [FlutterShapeMaker][1] I want to rotate it from the TopRight point as a fixed axis but the axis it's rotating doesn't change fixed.
1
vote
1 answer

Hover Effect Nav Bar Flutter

I am creating a simple web with flutter where i created a top-nav bar I want to animate the text button when mouse hover on them I did this by using MouseRegion but the thing is instead of animating individual button/widget the animation applies on…
RIZWAN ALI
  • 120
  • 1
  • 1
  • 11
1
vote
1 answer

How to populate DataTable widget with data fetched from my API?

So I try the code from following stack overflow answer How to populate DataTable with JSON API in flutter, and changed that as per my need but DataTable is not populated and displaying my error message "No data found...". I'm adding whatever I've…
1
vote
3 answers

Scroll to specific widget Flutter web

I am creating a simple web portfolio to have hand-on practice in flutter. I was wondering how other website work when we click on home/about/contact button the web scroll to that specific widget. I tried to do this but didn't get it how to implement…
RIZWAN ALI
  • 120
  • 1
  • 1
  • 11
1
vote
1 answer

How to prevent user to refresh page locally in flutter web

I have a project that need to prevent user to refresh page with some conditions using flutter for web. I already search and try the solution in this How to disable reloading or refresh button in browser in flutter web? but i'm failed to cancel the…
Hansen
  • 650
  • 1
  • 11
  • 32
1
vote
0 answers

How to get distance from bottom of screen to a particular widget in flutter web?

I need to calculate the distance from the bottom of a screen to a container.Is it possible to calculate distance from bottom of a screen to Container and distance from top of a screen to container in separately? I got the distance from top like…
Developer
  • 148
  • 8
1
vote
1 answer

Flutter - Navigating to detail page on a sfdatagrid row selection (table has data fromfirestore)

I managed to populate a SfDatagrid table with data from firestore, this is the link to the code: https://github.com/SyncfusionExamples/How-to-load-data-from-firestore-to-Flutter-DataTable-SfDataGrid- This code is running perfectly and I have the…