Questions tagged [flutter-windows]

Use this tag for questions related to windows-specific Flutter desktop questions, in conjunction with [flutter]. For more general Flutter desktop questions, use [flutter-desktop] and, for general Flutter questions, use only [flutter].

176 questions
1
vote
2 answers

Flutter Windows App Debug, Link: fatal error LNK1104

I was debugging on my flutter app on Windows platform but it got stuck, I thought it might be caused because of some error in my code. I terminated the session and restarted the debugging. But then this error was shown when I debugged on…
1
vote
3 answers

How to install Flutter in Windows 10?

I am installing flutter in my windows 10 but when I check that is everything alright through flutter doctor command in cmd then there is some error shown in following picture. Error image
1
vote
1 answer

Move to next input field on pressing Tab in Flutter Windows Application

I have a form with multiple TextFormField. I would like for the user to be able to move to the next field using tab or go back using Shift+Tab. The page looks as follows: When I focus on Contract Number field and press tab, instead of going to…
Saad Bashir
  • 4,341
  • 8
  • 30
  • 60
1
vote
0 answers

flutter how to read get response from serial port rs232 in flutter windows app?

i'm using serial_port_win32 0.5.2, RS232, for recipe printer, windows 10. port.writeBytesFromUint8List(); are working well however i try to get response for status of printer like port.readBytesOnListen(8, (value) { print('printer value: …
jichang
  • 23
  • 5
1
vote
1 answer

how to get windows device information in flutter using win32 api and wmi?

I am trying to get windows machine information such as bios vendor, serial and other cpu info like cores, vendor, socket etc...(some static info). I believe that I can achieve this using ffi and win32 api, but I don't have basic idea to start. In…
Abdul azeez VP
  • 156
  • 1
  • 1
  • 9
1
vote
0 answers

Flutter desktop listview move by up/down key

I am creating a flutter windows app. One page has listview in a scaffold widget. There is an action button on app bar. When I move the up/down key on listview. The focus item jumps from item 2 to say item 7, instead of next item, item 3. This occurs…
Jimmy
  • 21
  • 2
1
vote
2 answers

flutter run -d windows - Showing error Nuget is not installed

When I Run the flutter run -d windows command it shows nuget is not installed error. How to solve this in windows. nuget installation error I tried Manual installation of nuget.exe and updated visual studio packages. I run flutter doctor -v cmd no…
Ramkumar
  • 13
  • 1
  • 5
1
vote
0 answers

Preview file from memory in flutter windows app

Is there a way to preview/open with the default app, a file from memory without creating a temporary file in the disc, on a Flutter Windows Desktop app? (One example would be a ContentProvider/PipeProvider in Android) We are trying to preview files…
1
vote
1 answer

Flutter `CMake Generate step failed. Build files cannot be regenerated correctly.`

When I run flutter run -d windows I am getting below error. ``` PS C:\Users\meera\salesman> flutter run -d windows Launching lib\main.dart on Windows in debug mode... CMake Error: Error evaluating generator…
Harshit
  • 95
  • 2
  • 8
1
vote
1 answer

Get Method Call arguments in flutter window

Does anyone know how to get an argument pass by MethodChannel in windows? Here is my code to send and receive data. I need to get data value in string type String data = "Some data"; await platform.invokeMethod("OpenViewer",…
1
vote
1 answer

Disable high DPI scaling for flutter on desktop

Is it possible to disable the high dpi scaling for a flutter app? My layout works well, but when the scale factor is set to something very high the app becomes tiny. Or is there atleast a way to take the scaling into account?
CaptainDario
  • 83
  • 1
  • 7
1
vote
0 answers

How to retrieve analytics data from firebase in flutter

I want to retrieve the analytics data stored in firebase(like users in last 30 minutes, events triggered, sales made etc) in a flutter windows application i am creating. I know how to send data to firebase but i want to retrieve this analytics data…
Joel
  • 239
  • 3
  • 21
1
vote
0 answers

how to listen to localhost port in flutter windows

I want to listen to a specific localhost port using Windows Filter. This is to be able to create an interface between the browser and Windows so that I can execute a series of commands in Windows
mohammad ghari
  • 153
  • 2
  • 13
1
vote
1 answer

Is there any way to disable Screen Capture/Screen Recording Flutter win32 app

I am trying to secure my application, Is there any way of disabling screen capture in win32 application. Flutter for windows Thanks in advance Output I desire
1
vote
1 answer

Flutter Windows app crashes without error while loading multiple images from local disk

I created a multi image selector form field widget to use within a form with validation and so on, and it works fine; however, when I select 8 or more images from a file picker at once and add them to the selected images list, which would be…
Arin Faraj
  • 358
  • 2
  • 14