screen_retriever 0.0.1 copy "screen_retriever: ^0.0.1" to clipboard
screen_retriever: ^0.0.1 copied to clipboard

outdated

This plugin allows Flutter **desktop** apps to Retrieve information about screen size, displays, cursor position, etc.

example/lib/main.dart

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

import './pages/home.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primaryColor: Color(0xff416ff4),
        canvasColor: Colors.white,
        scaffoldBackgroundColor: Color(0xffF7F9FB),
        dividerColor: Colors.grey.withOpacity(0.3),
      ),
      builder: BotToastInit(),
      navigatorObservers: [BotToastNavigatorObserver()],
      home: HomePage(),
    );
  }
}
36
likes
0
pub points
94%
popularity

Publisher

verified publisherleanflutter.dev

This plugin allows Flutter **desktop** apps to Retrieve information about screen size, displays, cursor position, etc.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on screen_retriever