desktop_docker 1.0.0+1 copy "desktop_docker: ^1.0.0+1" to clipboard
desktop_docker: ^1.0.0+1 copied to clipboard

outdated

Makes a nice Docker for web desktop.

TODO: Put a short description of the package here that helps potential users know whether this package might be useful for them.

Features #

TODO: List what your package can do. Maybe include images, gifs, or videos.

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

TODO: Include short and useful examples for package users. Add longer examples to /example folder.

import 'package:flutter/material.dart';
import 'package:flutter_web_desktop/app/modules/views/unknown_route_view.dart';
import 'package:flutter_web_desktop/windows/WindowManager.dart';

import 'package:get/get.dart';
// import 'package:get_it/get_it.dart';

import 'Util/fileManager/files/fileManager.dart';
import 'app/routes/app_pages.dart';

void main() {
  Get.put(FileManager());
  Get.put(WindowManager());
  // GetIt getIt = GetIt.instance;
  // getIt.registerSingleton<FileManager>(FileManager());
  // getIt.registerSingleton<WindowManager>(WindowManager());
  runApp(
    GetMaterialApp(
      debugShowCheckedModeBanner: false,
      title: "Application",
      initialRoute: AppPages.INITIAL,
      getPages: AppPages.routes,
      unknownRoute: GetPage(name: '/not-found', page: () => const UnknownRouteView()),
    ),
  );
}

Additional information #

TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.

6
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Makes a nice Docker for web desktop.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on desktop_docker