fullscreen_window 1.0.4 copy "fullscreen_window: ^1.0.4" to clipboard
fullscreen_window: ^1.0.4 copied to clipboard

A Flutter plugin makes your window fullscreen.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:fullscreen_window/fullscreen_window.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String screenSizeText = "";

  void setFullScreen(bool isFullScreen) {
    FullScreenWindow.setFullScreen(isFullScreen);
  }

  void showScreenSize(BuildContext context) async {
    Size logicalSize = await FullScreenWindow.getScreenSize(context);
    Size physicalSize = await FullScreenWindow.getScreenSize(null);
    setState(() {
      screenSizeText =
          "Screen size (logical pixel): ${logicalSize.width} x ${logicalSize.height}\n";
      screenSizeText +=
          "Screen size (physical pixel): ${physicalSize.width} x ${physicalSize.height}\n";
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('FullScreen example app'),
        ),
        body: Center(
          child: Column(mainAxisSize: MainAxisSize.min, children: [
            ElevatedButton(
              onPressed: () => setFullScreen(true),
              child: const Text("Enter FullScreen"),
            ),
            const SizedBox(height: 10),
            ElevatedButton(
              onPressed: () => setFullScreen(false),
              child: const Text("Exit FullScreen"),
            ),
            const SizedBox(height: 10),
            Builder(
                builder: (context) => ElevatedButton(
                      onPressed: () => showScreenSize(context),
                      child: const Text("Show screen size"),
                    )),
            const SizedBox(height: 10),
            if (screenSizeText.isNotEmpty) Text(screenSizeText),
          ]),
        ),
      ),
    );
  }
}
14
likes
120
pub points
91%
popularity

Publisher

unverified uploader

A Flutter plugin makes your window fullscreen.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on fullscreen_window