desktop_entry 1.0.0 desktop_entry: ^1.0.0 copied to clipboard
A Flutter plugin for managing Desktop Entry files (.desktop) and DBus Service files in Linux environments.
import 'app.dart';
import 'package:example/service/dbus_service.dart';
import 'package:flutter/material.dart';
void main(List<String> arguments) {
// It is highly recommended to perform requests to the DBus daemon as close to
// initialisation as possible.
DbusService();
runApp(MyApp(arguments));
}