fullscreen_window

Creator: coderz1093

Last updated:

Add to Cart

Description:

fullscreen window

fullscreen_window #

This plugin makes your window fullscreen.
Platform Support #



Windows
Web
Android
iOS




✔️
✔️
✔️
✔️




Web is tested on Chrome / Edge (in Windows)
Not tested on iOS, but I think it should work because just use the pure Flutter API and works on Android.

Quick Start #
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
fullscreen_window: ^1.0.3
copied to clipboard
Or
dependencies:
fullscreen_window:
git:
url: https://github.com/jakky1/fullscreen_window.git
ref: master
copied to clipboard
Functions #
import 'package:fullscreen_window/fullscreen_window.dart';

FullScreenWindow.setFullScreen(true); // enter fullscreen
FullScreenWindow.setFullScreen(false); // exit fullscreen
Size screen_logical_size = await FullScreenWindow.getScreenSize(context);
Size screen_physical_size = await FullScreenWindow.getScreenSize(null);
copied to clipboard
Example #
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),
]),
),
),
);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.