floating_window_android 1.0.0 copy "floating_window_android: ^1.0.0" to clipboard
floating_window_android: ^1.0.0 copied to clipboard

A Flutter plugin for displaying and managing floating windows on Android. Supports customizable positioning, dragging, styling, and interaction with the main app.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'pages/overlay_window.dart';
import 'pages/permission.dart';

// 悬浮窗入口点
@pragma("vm:entry-point")
void overlayMain() {
  runApp(
    const MaterialApp(debugShowCheckedModeBanner: false, home: OverlayWindow()),
  );
}

void main() {
  runApp(
    const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: PermissionPage(),
    ),
  );
}
5
likes
0
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for displaying and managing floating windows on Android. Supports customizable positioning, dragging, styling, and interaction with the main app.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on floating_window_android

Packages that implement floating_window_android