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

outdated

A new flutter plugin project.

example/lib/main.dart

import 'package:flutter/material.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(
      home: HomePage(),
    );
  }
}
916
likes
0
pub points
99%
popularity

Publisher

verified publisherleanflutter.dev

A new flutter plugin project.

License

unknown (license)

Dependencies

flutter

More

Packages that depend on window_manager