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
0
votes
0 answers

USB esc_pos_printer Flutter

I want to print a flash with a USB printer in Flutter, but this library only has a network printer, I would be grateful if you could help me. If it is possible with this library, please let me know. If not, there is no problem with another library I…
0
votes
0 answers

How to print arabic text to a thermal printer from Flutter windows?

I tried the Flutter package esc_pos_printer to print to a thermal printer. It all works fine if I print Latin characters. I have tried using the mutilingual code page but it always fails when trying to print arabic characters. I need to be able to…
0
votes
1 answer

Azure pipeline fails with Flutter Build windows

I have a azure-pipeline.yml file as below. variables: buildNumber: $[replace(variables['Build.BuildNumber'], '.', '')] # runtime expression stages: - stage: Flutter_Build_Windows_Test dependsOn: [] jobs: - template:…
0
votes
0 answers

upload an Excel file(xls) and save the data in the database sqlite

How to uplaod an Excel file(xls) from desktop and save the data in the database sqlite using flutter windows this is my table CREATE TABLE "products" ( "product_id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT , "product_name" TEXT NOT NULL…
0
votes
0 answers

How can I fix empty values returned when using flutter_libserialport package to read serial input on Windows?

I'm developing a flutter destop app which has to read serial input from an esp32 board. I'm using the flutter_libserialport package. Reads are empty. When I use a port reader to stream, I get only [0]s and when I use the port.read(buffer), I just…
0
votes
0 answers

How to enable windows developer mode inside windows docker container for building Flutter windows apps?

I am trying to build a flutter windows application inside a windows docker container (mcr.microsoft.com/windows/servercore:ltsc2019), which is running on a windows host. The problem is that when I am running the build command (flutter build windows)…
enwi
  • 67
  • 1
  • 2
  • 8
0
votes
0 answers

Flutter windows app loaded with webview using flutter web url works perfectly fine except scrolling in the windows app

I have created one app with support of android, IOS and web using flutter and created new windows application using URL of the flutter web. I have used below mentioned WebView to load the URL in the windows app that contains the flutter web…
Jay_Panchal
  • 327
  • 2
  • 11
0
votes
0 answers

lost connection with the positive one. Exit (sigter) Flutter

I have a curious problem with Flutter, it turns out that I am developing an application for Windows and nowhere, jump a message on the purification console that says "Lost Connection to Device. Exited (Sigterm)". Then purification connection is lost…
0
votes
1 answer

My flutter app can't run on Windows 7 SP1 64bit

I'm flutter developer, and some of my clients still using Windows 7. According to the docs, flutter deployed apps supports Windows 7, But when I try to run my app on Windows 7, I faced this issue: I try manual adding missing dll files, but still…
amir_a14
  • 1,478
  • 10
  • 15
0
votes
0 answers

When requesting the OpenAI API in Flutter on a Windows environment, an error message "The semaphore timeout period has expired" is returned

I receive an error message from Flutter saying : "The semaphore timeout period has expired". However, it returns results normally in Chrome and Android. I have been searching for solutions for a long time but haven't been able to solve it. Below…
isYang
  • 1
  • 1
0
votes
0 answers

How can i schedule notifications in flutter framework

I have a flutter app for windows desktop app ,I want to schedule notification for student exit date , I mean I want the app Give to user notification before exit date due ,I used flutter local notifications: ^14.0.0+1 package and test it on IOS and…
0
votes
2 answers

Open a program using Flutter Windows

When the user clicks on the button in my Flutter program, I want to open "E:\Downloads\1.fbx" file on the Windows 3D viewer (Default software - windows). But the file location is not included in pubspec.yaml file. I cannot find a way to do this. Is…
HoRiz
  • 706
  • 4
  • 15
0
votes
0 answers

How can I make main.dart file to read message passed using the send message

I'm trying to build a flutter app that receives a sendMessage from native code, in this case its C++. sendMessage is sent only on relaunch of existing app instance. Here I'm attaching the code for more clarity on what I'm trying to do. code for…
0
votes
0 answers

restart app working fine on android but not on windows flutter app

I am unable to find that how to restart windows app of flutter. I have used flutter package "rebirth" from pub.dev but it gives black screen and did not restart.
0
votes
0 answers

integrate printer sdk into flutter

firstly I hit the button to execute openPort and it works successfully, then I hit the button to execute setPort and it works successfully, then when I hit the button to run printText the app crashes and it doesn't give any errors I got no idea why…