presentation-displays icon indicating copy to clipboard operation
presentation-displays copied to clipboard

The flutter plugin supports running on two screens. It's basically a tablet connected to another screen via an HDMI or Wireless

Results 29 presentation-displays issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When using the example, after selecting screen ID and pressing "show presentation" the touchscreen stops responding to any click. RustDesk can still be used for pressing buttons...

**Describe the bug** When we make release APK , second display does not work.

Future getDisplays({String? category}) async { List origins = await jsonDecode((await _displayMethodChannel ?.invokeMethod(_listDisplay, category))) ?? []; List displays = []; for (var element in origins) { final map = jsonDecode(jsonEncode(element)); displays.add(kReleaseMode...

Transfer data from secondary to main display [Android].

**Describe the bug** Nil Exception when trying to show the second screen **To Reproduce** Steps to reproduce the behavior: 1. Run the app 2. Show presentation 3. Error **Expected behavior**...

``` import 'package:flutter/material.dart'; import 'package:presentation_displays/display.dart'; import 'package:presentation_displays/displays_manager.dart'; import 'package:presentation_displays/secondary_display.dart'; Route generateRoute(RouteSettings settings) { switch (settings.name) { case '/': return MaterialPageRoute(builder: (_) => const DisplayManagerScreen()); case 'presentation': return MaterialPageRoute(builder: (_) =>...

**Describe the bug** I have copied the example code and attempted to replace the second screen with a webview. I can transmit data and text can be shown properly as...

- After several transfers of JSON data to the second screen, the ios app crashes! (My feeling: If the transferred data is smaller, it takes longer! ) - Json Data:...

displayReleaseFromJson cuases all variables to be null in release mode. It uses a,b,d,c for variable names, which are not guaranteed from proguard tool. Also when using @Keep annotation and @SerializedName...