Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.
This repository was archived by the owner on May 4, 2023. It is now read-only.

Catch wndproc in flutter app #21

Description

@ilopX

Subtasks:

  • Implementation real dragging in flutter_window_man

Use case:

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return WndProc(
      wndproc: (int hwnd, int msg, int wParam, int lParam) {
        switch (msg) {
          case WM_MOUSEMOVE:
            break;

          case WM_CLOSE:
            break;

          case WM_SIZE:
            break;

          case WM_FONTCHANGE:
            break;

          case WM_DPICHANGED:
            break;
        }
      }
    );
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions