Questions tagged [flutter-desktop]

Dedicated to questions about Flutter desktop implementation. Use (flutter) instead for questions about flutter in general, or (flutter-web) if question are about issues using flutter to design web applications.

352 questions
1
vote
0 answers

Can I run dart processes in the background while Flutter is closed? (Desktop)

I'm currently developing an application for the Linux desktop. It essentially checks an online server for file changes and updates a folder on the local filesystem accordingly. most of the processing is done in the background. However, there is a…
ConcenTech
  • 65
  • 5
1
vote
0 answers

Flutter Windows Desktop: Integrate with the File Activation API

I am looking for some guidance on implementing the Windows File Activation API with my Flutter App, that is, a user able to open a file associated with my App and have that file path passed to my app instance on startup and during runtime if the…
1
vote
3 answers

Is there a way to prevent rebuilding flutter widget when change between tabs?

I am currently developing a flutter desktop CRM and I want to implement a multi tab feature. But when I change into another tab and then back to the first flutter rebuild the whole widget. So when write some data to the text input inside tab "Tab…
1
vote
0 answers

How to integrate scrcpy window into Flutter Windows Desktop Application?

I want use Flutter Windows Desktop to develop a mobile phone control application. But I do not know how to integrate scrcpy window into the Flutter Application. I'm not familiar with C + +, can I solve this problem by using Flutter…
1
vote
2 answers

How to take screenshot of entire screen outside of your FLUTTER DESKTOP app(mostly for Windows OS)?

I'm new to flutter. Now I am able to take screenshot for my entire desktop app screen using Screenshot package & storing that image to local storage. But my requirement is to capture the screenshot of entire screen of the window, like if 2…
1
vote
2 answers

How to make a tooltip that contains information, images and icons with flutter?

I am trying to make a desktop application where there are characters from a game and I need that when the mouse is positioned over it by hovering, an information box about it is displayed on the character. I tried with the tooltip widget, but it…
Hekhy
  • 21
  • 6
1
vote
1 answer

How to get image frames from video in Flutter in Windows?

In my flutter desktop application I am playing video using dart_vlc package. I want to take image frames (like screenshot) from video file of different video positions. At first I tried with screenshot package where I found two problems. It takes…
1
vote
1 answer

Any Solution for Hosting native Window views with Flutter?

My company is planning to make a "Camera Application" on Windows platform. To display camera livestream on the app, I need to call native 3rd SDK' functions that be written by C++. So I need to pass HWND(int) of the views that I want as a argument…
IT DEV
  • 11
  • 2
1
vote
1 answer

Detect tap with pressed keyboard key

I am trying to implement a ListView for Desktop applications, which is able to multiselect the items. On Desktop we do this by either clicking an item, or clicking and holding the control key. To select an item, you simply can add an Inkwell or…
DirtyNative
  • 2,553
  • 2
  • 33
  • 58
1
vote
0 answers

Flutter MacOS Desktop Size

Hi I'm working on flutter macOS Desktop, How can I set Minimum windows size with they open the desktop app, I installed the desktop_window 0.4.0 from pub but how can I implement if they open the app it will automatically resize the desktop?
erwin
  • 99
  • 2
  • 9
1
vote
1 answer

Desktop flexible grid amount of content in a row

I have problem designing inside a flexible a grid where it can go from 3 item in a row on full screen to be 1 item in a row on the smallest allowed size of the application, is there a widget or guide for this?
1
vote
0 answers

How to make collapse paneItem in navigationpane in fluent ui in flutter

I am trying to do collapse paneItem in navigationpane after a lot of searcb and i didn't found anything about that if anyone used fluent ui with flutter and know how to do that it will be nice That is mycode: import 'dart:ui'; import…
1
vote
1 answer

Can't copy the file after build on flutter desktop application

in my project I can press the save button to copy a file inside flutter in debug mode and every thing works fine (the file copied), but after build and open the release application I can't copy the file with no error message, just the button pressed…
1
vote
2 answers

Not able to create flutter linux desktop application snapcraft build

I have developed a Linux desktop application with the help of flutter but now I am facing an error when I am trying to create the snapcraft build in #Flutter Project and the project is running perfectly when I am run on a Linux system . Please let…
1
vote
1 answer

'value.isInitialized': is not true || Flutter desktop error

I am working on Blockly(Blockly is a client-side library for the programming language JavaScript for creating block-based visual programming languages and editors) for the flutter desktop windows. I am using the webview_windows package to display…